diff options
author | Sean Gillespie <segilles@microsoft.com> | 2016-05-10 12:03:16 -0700 |
---|---|---|
committer | Sean Gillespie <segilles@microsoft.com> | 2016-05-10 16:40:48 -0700 |
commit | 46ba7777d233c3b3787ea02b8226e340f09d574c (patch) | |
tree | 3450865080fe32a4c9bd576023ed2323ce58aeb3 /tests/src/GC | |
parent | 72b1ea011f28c1897fa2a668f0676a075bdb6b6e (diff) | |
download | coreclr-46ba7777d233c3b3787ea02b8226e340f09d574c.tar.gz coreclr-46ba7777d233c3b3787ea02b8226e340f09d574c.tar.bz2 coreclr-46ba7777d233c3b3787ea02b8226e340f09d574c.zip |
Enable the GCSimulator CI run to run on a regular basis
Diffstat (limited to 'tests/src/GC')
433 files changed, 912 insertions, 0 deletions
diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator.csproj new file mode 100644 index 0000000000..9786d7c8dd --- /dev/null +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator.csproj @@ -0,0 +1,48 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" /> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</ProjectGuid> + <OutputType>Exe</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <FileAlignment>512</FileAlignment> + <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> + <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath> + <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir> + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp> + <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> + <CLRTestKind>BuildOnly</CLRTestKind> + </PropertyGroup> + <!-- Default configurations to help VS understand the configurations --> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> + </PropertyGroup> + <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> + </PropertyGroup> + <ItemGroup> + <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies"> + <Visible>False</Visible> + </CodeAnalysisDependentAssemblyPaths> + </ItemGroup> + <ItemGroup> + <Compile Include="GCSimulator.cs" /> + <Compile Include="lifetimefx.cs" /> + </ItemGroup> + <ItemGroup> + <None Include="app.config" /> + <None Include="$(GCPackagesConfigFileDirectory)extra\project.json" /> + </ItemGroup> + <PropertyGroup> + <ProjectJson>$(GCPackagesConfigFileDirectory)extra\project.json</ProjectJson> + <ProjectLockJson>$(GCPackagesConfigFileDirectory)extra\project.lock.json</ProjectLockJson> + </PropertyGroup> + <ItemGroup> + <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" /> + </ItemGroup> + <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" /> + <PropertyGroup Condition=" '$(MsBuildProjectDirOverride)' != '' "> + </PropertyGroup> +</Project> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj index 28f032d7b4..4f308a8b72 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_1.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_10.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_100.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj index 6c7fcc34ac..6cb387976f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_101.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_102.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_103.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_104.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_105.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_106.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_107.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj index 2d8d38e8ce..758df0528a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_108.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_109.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_11.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_110.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_111.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj index 9dfa7dfafc..86469e34a1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_112.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj index 9036b0bc3f..66b642cb83 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_113.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_114.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_115.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_116.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj index 2d8d38e8ce..758df0528a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_117.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_118.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_119.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_12.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_120.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_121.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_122.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_123.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj index efb10977b7..8298916d58 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_124.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_125.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_126.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_127.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj index f57ecaae5b..3144367f28 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_128.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj index 460655c99d..56e8aed9e7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_129.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj index bf95bc2046..2c6af85e72 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_13.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj index 06442b9585..7b76476f6d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_130.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj index a1a0b36934..556c3dc0f0 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_131.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj index e546eea22a..6218d7333b 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_132.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj index 6038dd2ffa..25a8a5267f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_133.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj index e2f9d58042..19ca41fb74 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_134.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj index 0db1126035..da334631b9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_135.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj index 6838099cc6..667494c213 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_136.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj index f1ba385cfc..a468772218 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_137.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj index 5ffa556e5c..15a8586e44 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_138.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj index 3e95b0296e..055858abec 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_139.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_14.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj index 3e95b0296e..055858abec 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_140.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj index c9314f904c..a9a108ea81 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_141.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj index c9314f904c..a9a108ea81 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_142.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj index 18d27b6e6b..be8e87c1c3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_143.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj index 2e5f2559e9..cd4f5d4a82 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_144.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj index b94d3d181b..76d808ae62 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_145.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj index 5916c745f5..c01be6c4bc 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_146.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj index ef32aa8ebb..c51967061d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_147.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj index 141e205eda..7a0c555297 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_148.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj index e2d9647899..f0af44f944 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_149.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_15.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj index e2d9647899..f0af44f944 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_150.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj index e2d9647899..f0af44f944 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_151.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj index 6fc13dcc06..02699ab822 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_152.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj index 1f3f703969..1c0f26002f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_153.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj index 546b43dd0c..2011fb576e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_154.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_155.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_156.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_157.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj index a3f5fd0fab..cafee0d212 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_158.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_159.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_16.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj index a2edfc0569..74e0b04d6b 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_160.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj index e0baf94728..5d6dd02f3a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_161.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj index 96336cfe85..c659191574 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_162.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj index b75953b1e0..d6e6a84b0c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_163.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj index 6a5817642d..17b9e42ca3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_164.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj index 8a11924083..cdd7fd23c2 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_165.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj index 4634e41a0d..30167e1286 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_166.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj index bfd81c2bc4..7148b244cb 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_167.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj index 55259a9fcd..6f5473bb59 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_168.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj index bccf1103b0..e69bd71d09 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_169.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_17.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj index 55259a9fcd..6f5473bb59 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_170.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj index 200386e810..c935f07658 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_171.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj index c7de1bb413..96fe542567 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_172.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj index aa44194311..c053417778 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_173.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj index 0efdaf3711..6e8c1cd332 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_174.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj index ef8c34d9b5..5b7a9d3bc8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_175.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj index de07798963..f5f6dbdcaa 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_176.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj index 4d8939eb40..2e2105ba05 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_177.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj index cab5060221..14996e6093 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_178.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj index 7292be246e..b7b36c09da 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_179.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 8517 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_18.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj index bccf1103b0..e69bd71d09 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_180.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj index bdcca17d7e..f4353f8b31 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_181.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj index 8da744c5b4..07c0d50db1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_182.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj index 2ddeaaf973..f8cfc3af83 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_183.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj index ac05dbd041..f2a4428134 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_184.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj index bd12f6781b..f2d06918f4 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_185.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj index bcf66b3af4..91ca392f2c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_186.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj index 635dda42b5..b08f91c2a6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_187.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj index 2cbf1ff02a..35ebf9e777 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_188.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj index 1705cdbdbc..fa1cceba5c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_189.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_19.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj index 55a0bda446..00a6c5e773 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_190.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj index 178fc8e288..e01e3e8a3d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_191.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj index 686248def5..9d966eff6e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_192.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj index 7a3dde083c..ce169286d4 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_193.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj index 16e4341a3d..d61f8659e5 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_194.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj index e098c199a9..a6893e9b35 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_195.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 7 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj index 6838099cc6..667494c213 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_196.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj index efb10977b7..8298916d58 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_197.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj index 18d27b6e6b..be8e87c1c3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_198.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj index b75953b1e0..d6e6a84b0c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_199.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj index bf95bc2046..2c6af85e72 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_2.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj index 2d8d38e8ce..758df0528a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_20.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj index 5e48bd40b9..e44ba588c9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_200.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj index 096005471f..8bc3d0e16d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_201.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj index 215d608157..40a2232e2d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_202.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj index 6fc13dcc06..02699ab822 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_203.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj index c7de1bb413..96fe542567 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_204.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj index 6be4dc91c1..9ec14374db 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_205.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 30000 -sdc 6000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj index 7c0725c4ba..85f6410f22 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_206.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj index db6796014f..9343214047 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_207.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj index 9dfa7dfafc..86469e34a1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_208.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_209.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_21.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_210.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_211.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_212.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj index 28f032d7b4..4f308a8b72 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_213.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj index bf95bc2046..2c6af85e72 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_214.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_215.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_216.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_217.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_218.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj index 5d02fc10f3..1363ea3f70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_219.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj index 08831f806c..0ebcdd0918 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_22.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_220.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_221.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_222.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_223.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_224.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj index bf95bc2046..2c6af85e72 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_225.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_226.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_227.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_228.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_229.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj index f4f9e75dda..5812412f42 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_23.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_230.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_231.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj index 2d8d38e8ce..758df0528a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_232.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_233.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj index 08831f806c..0ebcdd0918 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_234.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj index f4f9e75dda..5812412f42 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_235.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj index 5e48bd40b9..e44ba588c9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_236.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj index 9ca2dff551..4d8531d102 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_237.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj index b6840beb16..1d6304bbf9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_238.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj index b5bd23753c..6ba89cfb75 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_239.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj index 5e48bd40b9..e44ba588c9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_24.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj index a6251f9181..ca54460c0a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_240.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj index d8463d30ea..3a6fcb1c30 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_241.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj index f0c2b6bcac..4000840976 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_242.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj index 4f104e064b..6783b2ac64 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_243.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj index b0e9053d4f..03c9bc162f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_244.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_245.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_246.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj index 73c88abe35..0d85ac4f0f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_247.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_248.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_249.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj index 9ca2dff551..4d8531d102 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_25.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj index 5c996cc391..79e7ad1a43 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_250.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj index 28d0de7da6..50eb7c3027 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_251.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj index 7926d5abe0..865fefc19c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_252.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj index b12a386abb..9e65e956d6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_253.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj index c6394f8531..d70479f04e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_254.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj index 0a87ec407a..6a7b5ef37e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_255.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj index a16d330bfb..edae1ec1bf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_256.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj index d21b025a69..884942b686 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_257.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj index 73c88abe35..0d85ac4f0f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_258.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj index 6c2cb1c567..acebb78fee 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_259.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj index b6840beb16..1d6304bbf9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_26.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj index 909a76ac83..070e75379d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_260.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj index e20906b5fc..faac00d516 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_261.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj index c5013c5fa7..a01d689e4e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_262.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj index a75ccd3dcd..e5c023d2dc 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_263.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj index af2629bf2b..85e5be9695 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_264.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj index 8092737af2..d27acb06f5 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_265.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj index 8ffc7a06d8..247685d4f9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_266.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj index a34317b0eb..77dfed20f2 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_267.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj index f04abc886b..478aa41f68 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_268.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj index 3c92258bce..8cea5a2a71 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_269.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj index b5bd23753c..6ba89cfb75 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_27.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj index 4f9e008182..7ada15760f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_270.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj index 0c9bc5fe22..3a45c73e94 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_271.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj index 7a3a380221..432e968b34 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_272.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj index 124c5ec09a..636e79e2fb 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_273.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj index 6dbbbe4a7d..4d494de9c1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_274.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj index 9bac5d03d0..4ab5cc94b3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_275.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj index d37b14d2a0..4508cb9e64 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_276.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj index e586ea33bc..8899100c23 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_277.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj index b4cc86c5b1..fe404929c8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_278.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj index 223ae5e074..35295753d0 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_279.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj index a6251f9181..ca54460c0a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_28.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj index 3c92258bce..8cea5a2a71 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_280.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj index b7558946e7..5e879e15bb 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_281.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj index 882f391d2f..6db08540a8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_282.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj index 7b1f2c4509..18eab5c1c5 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_283.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj index 581da7ed6a..59d0fa40b2 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_284.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj index f7db43ca49..e375d71eb7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_285.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj index 29704fd6a1..61793fae1b 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_286.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj index a5f7200687..cf9573ed2d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_287.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj index c8de854ff5..e52671caef 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_288.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj index 3ca7881ea0..3522c76cba 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_289.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj index d8463d30ea..3a6fcb1c30 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_29.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj index a1b4a610be..5edda6bdda 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_290.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj index 798e06d9d3..bf9515bb4e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_291.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj index 3cda5a59e9..4c25fd86e1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_292.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj index cec754a20e..2fd0c355a7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_293.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj index bf2eb93f35..f3311689a4 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_294.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj index 182e16263a..171dc24f5d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_295.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj index 9c672d11ff..e83d11a1d8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_296.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj index 4081ac7fda..c99ff22c0c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_297.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj index 7f96180754..ddf6e0022e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_298.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj index 0162adfa85..132f46ef5f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_299.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_3.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj index f0c2b6bcac..4000840976 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_30.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj index a5c541b9d4..e35ea43b81 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_300.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj index 40b20d45d6..f10c3a611e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_301.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj index e9dfeaf338..8a268bb70d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_302.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj index d7b72f8c57..3ee5181b05 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_303.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj index eb49b88f4a..cf115dae2e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_304.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj index b10fb92bed..5f173a9b92 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_305.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_306.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_307.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_308.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_309.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj index 4f104e064b..6783b2ac64 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_31.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_310.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_311.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_312.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj index 6c7fcc34ac..6cb387976f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_313.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_314.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_315.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_316.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_317.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_318.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_319.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj index b0e9053d4f..03c9bc162f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_32.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj index 2d8d38e8ce..758df0528a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_320.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_321.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_322.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_323.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj index 9dfa7dfafc..86469e34a1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_324.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj index 9036b0bc3f..66b642cb83 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_325.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_326.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_327.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_328.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj index 2d8d38e8ce..758df0528a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_329.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_33.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_330.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_331.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_332.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_333.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_334.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_335.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj index efb10977b7..8298916d58 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_336.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_337.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_338.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_339.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_34.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj index f57ecaae5b..3144367f28 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_340.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj index 460655c99d..56e8aed9e7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_341.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj index 06442b9585..7b76476f6d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_342.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj index a1a0b36934..556c3dc0f0 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_343.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj index e546eea22a..6218d7333b 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_344.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj index 6038dd2ffa..25a8a5267f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_345.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj index e2f9d58042..19ca41fb74 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_346.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj index 0db1126035..da334631b9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_347.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj index 6838099cc6..667494c213 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_348.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj index f1ba385cfc..a468772218 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_349.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj index 73c88abe35..0d85ac4f0f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_35.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj index 5ffa556e5c..15a8586e44 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_350.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj index 3e95b0296e..055858abec 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_351.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj index 3e95b0296e..055858abec 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_352.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj index c9314f904c..a9a108ea81 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_353.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj index c9314f904c..a9a108ea81 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_354.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj index 18d27b6e6b..be8e87c1c3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_355.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj index 2e5f2559e9..cd4f5d4a82 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_356.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj index b94d3d181b..76d808ae62 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_357.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj index 5916c745f5..c01be6c4bc 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_358.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj index ef32aa8ebb..c51967061d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_359.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_36.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj index 141e205eda..7a0c555297 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_360.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj index e2d9647899..f0af44f944 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_361.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj index e2d9647899..f0af44f944 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_362.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj index e2d9647899..f0af44f944 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_363.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj index 6fc13dcc06..02699ab822 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_364.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj index 1f3f703969..1c0f26002f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_365.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj index 546b43dd0c..2011fb576e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_366.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_367.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_368.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_369.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_37.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj index a3f5fd0fab..cafee0d212 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_370.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj index ec23869c20..c25b0cb0f3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_371.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj index a2edfc0569..74e0b04d6b 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_372.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj index e0baf94728..5d6dd02f3a 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_373.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj index 96336cfe85..c659191574 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_374.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj index b75953b1e0..d6e6a84b0c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_375.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj index 6a5817642d..17b9e42ca3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_376.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj index 8a11924083..cdd7fd23c2 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_377.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj index 4634e41a0d..30167e1286 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_378.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj index bfd81c2bc4..7148b244cb 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_379.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj index 5c996cc391..79e7ad1a43 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_38.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj index 55259a9fcd..6f5473bb59 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_380.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj index bccf1103b0..e69bd71d09 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_381.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj index 55259a9fcd..6f5473bb59 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_382.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj index 200386e810..c935f07658 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_383.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj index c7de1bb413..96fe542567 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_384.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj index aa44194311..c053417778 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_385.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj index 0efdaf3711..6e8c1cd332 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_386.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj index ef8c34d9b5..5b7a9d3bc8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_387.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj index de07798963..f5f6dbdcaa 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_388.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj index 4d8939eb40..2e2105ba05 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_389.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj index 28d0de7da6..50eb7c3027 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_39.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj index cab5060221..14996e6093 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_390.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj index 7292be246e..b7b36c09da 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_391.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 8517 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj index bccf1103b0..e69bd71d09 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_392.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj index bdcca17d7e..f4353f8b31 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_393.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj index 8da744c5b4..07c0d50db1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_394.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj index 2ddeaaf973..f8cfc3af83 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_395.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj index ac05dbd041..f2a4428134 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_396.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj index bd12f6781b..f2d06918f4 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_397.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj index bcf66b3af4..91ca392f2c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_398.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj index 635dda42b5..b08f91c2a6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_399.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_4.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj index 7926d5abe0..865fefc19c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_40.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj index 2cbf1ff02a..35ebf9e777 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_400.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj index 1705cdbdbc..fa1cceba5c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_401.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj index 55a0bda446..00a6c5e773 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_402.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj index 178fc8e288..e01e3e8a3d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_403.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj index 686248def5..9d966eff6e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_404.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj index 7a3dde083c..ce169286d4 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_405.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj index 16e4341a3d..d61f8659e5 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_406.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj index e098c199a9..a6893e9b35 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_407.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 7 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj index 6838099cc6..667494c213 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_408.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj index efb10977b7..8298916d58 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_409.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj index b12a386abb..9e65e956d6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_41.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj index 18d27b6e6b..be8e87c1c3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_410.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj index b75953b1e0..d6e6a84b0c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_411.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj index 5e48bd40b9..e44ba588c9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_412.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj index 096005471f..8bc3d0e16d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_413.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj index 215d608157..40a2232e2d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_414.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj index 6fc13dcc06..02699ab822 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_415.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj index c7de1bb413..96fe542567 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_416.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj index 6be4dc91c1..9ec14374db 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_417.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 30000 -sdc 6000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj index 7c0725c4ba..85f6410f22 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_418.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj index db6796014f..9343214047 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_419.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj index c6394f8531..d70479f04e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_42.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj index 9dfa7dfafc..86469e34a1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_420.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_421.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_422.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_423.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_424.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj index d4bc3970b0..fd6f1fc614 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_425.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 7 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.1 -dw 0.0 -f</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj index f3f4b370dc..1139d294fe 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_426.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 8 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.2 -dw 0.0 -f</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj index 88cb16c23a..4f0d43e5ce 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_427.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 10 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.2 -dw 0.0 -f</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj index d35da3cdb6..703931331d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_428.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 10 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.3 -dw 0.0 -f</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj index b1fa9215fa..1a936f1a8f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_429.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 8 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.3 -dw 0.1 -f</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj index 0a87ec407a..6a7b5ef37e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_43.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj index 3ca7881ea0..3522c76cba 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_430.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj index f4931121c9..bf67c0a195 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_431.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj index ef32aa8ebb..c51967061d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_432.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj index a16d330bfb..edae1ec1bf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_44.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj index d21b025a69..884942b686 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_45.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj index 73c88abe35..0d85ac4f0f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_46.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj index 6c2cb1c567..acebb78fee 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_47.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj index 909a76ac83..070e75379d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_48.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj index e20906b5fc..faac00d516 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_49.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj index c1d451f3b1..2b8c48cfc7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_5.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj index c5013c5fa7..a01d689e4e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_50.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj index a75ccd3dcd..e5c023d2dc 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_51.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj index af2629bf2b..85e5be9695 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_52.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj index 8092737af2..d27acb06f5 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_53.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj index 8ffc7a06d8..247685d4f9 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_54.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj index a34317b0eb..77dfed20f2 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_55.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj index f04abc886b..478aa41f68 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_56.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj index 3c92258bce..8cea5a2a71 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_57.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj index 4f9e008182..7ada15760f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_58.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj index 0c9bc5fe22..3a45c73e94 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_59.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj index fb8209cbf4..0936b9b9d3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_6.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj index 7a3a380221..432e968b34 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_60.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj index 124c5ec09a..636e79e2fb 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_61.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj index 6dbbbe4a7d..4d494de9c1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_62.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj index 9bac5d03d0..4ab5cc94b3 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_63.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj index d37b14d2a0..4508cb9e64 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_64.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj index e586ea33bc..8899100c23 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_65.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj index b4cc86c5b1..fe404929c8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_66.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj index 223ae5e074..35295753d0 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_67.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj index 3c92258bce..8cea5a2a71 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_68.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj index b7558946e7..5e879e15bb 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_69.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj index 5d02fc10f3..1363ea3f70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_7.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj index 882f391d2f..6db08540a8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_70.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj index 7b1f2c4509..18eab5c1c5 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_71.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj index 581da7ed6a..59d0fa40b2 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_72.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj index f7db43ca49..e375d71eb7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_73.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj index 29704fd6a1..61793fae1b 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_74.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj index a5f7200687..cf9573ed2d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_75.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj index c8de854ff5..e52671caef 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_76.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj index 3ca7881ea0..3522c76cba 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_77.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj index a1b4a610be..5edda6bdda 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_78.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj index 798e06d9d3..bf9515bb4e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_79.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.8</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_8.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj index 3cda5a59e9..4c25fd86e1 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_80.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj index cec754a20e..2fd0c355a7 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_81.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj index bf2eb93f35..f3311689a4 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_82.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj index 182e16263a..171dc24f5d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_83.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj index 9c672d11ff..e83d11a1d8 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_84.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj index 4081ac7fda..c99ff22c0c 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_85.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj index 7f96180754..ddf6e0022e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_86.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj index 0162adfa85..132f46ef5f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_87.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj index a5c541b9d4..e35ea43b81 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_88.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj index 40b20d45d6..f10c3a611e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_89.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_9.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj index e9dfeaf338..8a268bb70d 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_90.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj index d7b72f8c57..3ee5181b05 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_91.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj index eb49b88f4a..cf115dae2e 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_92.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj index b10fb92bed..5f173a9b92 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_93.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj index c4d428ee49..9fd7d47acf 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_94.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj index 60beb101c4..f85e3e6c9f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_95.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj index b9d1327fc8..05fcecbecd 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_96.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj index 38c3498724..97d870556f 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_97.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj index b010a3b7f9..e56588ee70 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_98.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> diff --git a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj index 2b7b534ae5..fa0ddda8e6 100644 --- a/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj +++ b/tests/src/GC/Scenarios/GCSimulator/GCSimulator_99.csproj @@ -17,6 +17,8 @@ <DefineConstants>$(DefineConstants);STATIC;PROJECTK_BUILD</DefineConstants> <CLRTestExecutionArguments>-t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0</CLRTestExecutionArguments> <IsGCSimulatorTest>true</IsGCSimulatorTest> + <CLRTestKind>RunOnly</CLRTestKind> + <CLRTestProjectToRun>GCSimulator.csproj</CLRTestProjectToRun> </PropertyGroup> <!-- Default configurations to help VS understand the configurations --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |