diff --git a/eng/pipelines/common/templates/runtimes/build-test-job.yml b/eng/pipelines/common/templates/runtimes/build-test-job.yml index bbc9f854801ffd..4af04c546124d6 100644 --- a/eng/pipelines/common/templates/runtimes/build-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/build-test-job.yml @@ -78,13 +78,13 @@ jobs: - name: runtimeFlavorArgs value: '-nativeaot' - - name: testTreeFilterArg + - name: testFilterArg value: '' # Only build GCSimulator tests when the gc-simulator group is specified. - ${{ if eq(parameters.testGroup, 'gc-simulator') }}: - - name: testTreeFilterArg - value: 'tree GC/Scenarios/GCSimulator' + - name: testFilterArg + value: 'test GC/Scenarios/GC-simulator.csproj' - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml parameters: @@ -110,7 +110,7 @@ jobs: displayName: Disk Usage before Build # Build managed test components - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(logRootNameArg)Managed allTargets skipnative skipgeneratelayout skiptestwrappers $(buildConfig) $(archType) $(runtimeFlavorArgs) $(crossArg) $(priorityArg) $(testTreeFilterArg) ci /p:TargetOS=AnyOS + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) $(logRootNameArg)Managed allTargets skipnative skipgeneratelayout skiptestwrappers $(buildConfig) $(archType) $(runtimeFlavorArgs) $(crossArg) $(priorityArg) $(testFilterArg) ci /p:TargetOS=AnyOS displayName: Build managed test components - ${{ if in(parameters.osGroup, 'osx', 'ios', 'tvos') }}: diff --git a/eng/pipelines/common/templates/runtimes/run-test-job.yml b/eng/pipelines/common/templates/runtimes/run-test-job.yml index 1b1bf6a04815dd..d33fa76d9504f8 100644 --- a/eng/pipelines/common/templates/runtimes/run-test-job.yml +++ b/eng/pipelines/common/templates/runtimes/run-test-job.yml @@ -119,13 +119,13 @@ jobs: - name: LogNamePrefix value: TestRunLogs_R2R_CG2_HotColdSplitting - - name: testTreeFilterArg + - name: testFilterArg value: '' # Only build GCSimulator tests when the gc-simulator group is specified. - ${{ if eq(parameters.testGroup, 'gc-simulator') }}: - - name: testTreeFilterArg - value: 'tree GC/Scenarios/GCSimulator' + - name: testFilterArg + value: 'test GC/Scenarios/GC-simulator.csproj' - template: /eng/pipelines/common/templates/runtimes/native-test-assets-variables.yml parameters: @@ -232,7 +232,7 @@ jobs: # and directly unzip them there after download). Unfortunately the logic to copy # the native artifacts to the final test folders is dependent on availability of the # managed test artifacts. This step also generates the final test execution scripts. - - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) copynativeonly $(logRootNameArg)Native $(testTreeFilterArg) $(runtimeFlavorArgs) $(crossgenArg) $(buildConfig) $(archType) $(priorityArg) $(librariesOverrideArg) $(codeFlowEnforcementArg) + - script: $(Build.SourcesDirectory)/src/tests/build$(scriptExt) copynativeonly $(logRootNameArg)Native $(testFilterArg) $(runtimeFlavorArgs) $(crossgenArg) $(buildConfig) $(archType) $(priorityArg) $(librariesOverrideArg) $(codeFlowEnforcementArg) displayName: Copy native test components to test output folder diff --git a/src/tests/GC/API/Frozen/Frozen.cs b/src/tests/GC/API/Frozen/Frozen.cs index d7e78a755eac42..95cc5a6c2f5d82 100644 --- a/src/tests/GC/API/Frozen/Frozen.cs +++ b/src/tests/GC/API/Frozen/Frozen.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; namespace HelloFrozenSegment { using System; @@ -134,9 +135,10 @@ internal class Node public int number; } - internal static class Program + public static class Program { - private static unsafe int Main() + [Fact] + public static unsafe void TestEntryPoint() { // Regression testing for dotnet/runtime #83027 Node[] firstArray = new Node[30000000]; @@ -180,7 +182,6 @@ private static unsafe int Main() GC.Collect(); Console.WriteLine(root.next.next != null); frozenSegment.Release(); - return 100; } } } diff --git a/src/tests/GC/API/Frozen/Frozen.csproj b/src/tests/GC/API/Frozen/Frozen.csproj index cdead21ae9734a..9712e0f605cbd0 100644 --- a/src/tests/GC/API/Frozen/Frozen.csproj +++ b/src/tests/GC/API/Frozen/Frozen.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 true diff --git a/src/tests/GC/API/GC/Collect.cs b/src/tests/GC/API/GC/Collect.cs index 98b144bebe0e2b..618d29352fcb82 100644 --- a/src/tests/GC/API/GC/Collect.cs +++ b/src/tests/GC/API/GC/Collect.cs @@ -3,29 +3,32 @@ // Tests GC.Collect() using System; +using Xunit; public class Test_Collect { - public static int Main() { + [Fact] + public static int TestEntryPoint() + { - Object obj1 = new Object(); - int[] array = new int[25]; - - int gen1 = GC.GetGeneration(array); + Object obj1 = new Object(); + int[] array = new int[25]; + + int gen1 = GC.GetGeneration(array); - Console.WriteLine("Array is in generation: " + gen1); - GC.Collect(); + Console.WriteLine("Array is in generation: " + gen1); + GC.Collect(); - int gen2 = GC.GetGeneration(array); - Console.WriteLine("Array is in generation: " + gen2); + int gen2 = GC.GetGeneration(array); + Console.WriteLine("Array is in generation: " + gen2); - if(((gen1==2) && (gen2==2)) || (gen2>gen1)) { // was already in gen 2! - Console.WriteLine("Test for GC.Collect() passed!"); + if(((gen1==2) && (gen2==2)) || (gen2>gen1)) { // was already in gen 2! + Console.WriteLine("Test for GC.Collect() passed!"); return 100; - } + } - else { - Console.WriteLine("Test for GC.Collect() failed!"); + else { + Console.WriteLine("Test for GC.Collect() failed!"); return 1; - } - } + } + } } diff --git a/src/tests/GC/API/GC/Collect.csproj b/src/tests/GC/API/GC/Collect.csproj index 004c93a1d5072c..d72b8fc195fb14 100644 --- a/src/tests/GC/API/GC/Collect.csproj +++ b/src/tests/GC/API/GC/Collect.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 true diff --git a/src/tests/GC/API/GC/Collect0.cs b/src/tests/GC/API/GC/Collect0.cs index 01209f0bfae266..55840378fd5d08 100644 --- a/src/tests/GC/API/GC/Collect0.cs +++ b/src/tests/GC/API/GC/Collect0.cs @@ -3,9 +3,11 @@ // Tests GC.Collect(0) using System; +using Xunit; public class Test_Collect0 { - public static int Main() { + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; int agen1 = GC.GetGeneration(array); diff --git a/src/tests/GC/API/GC/Collect0.csproj b/src/tests/GC/API/GC/Collect0.csproj index 13bec04412bb6c..7a51346cd22079 100644 --- a/src/tests/GC/API/GC/Collect0.csproj +++ b/src/tests/GC/API/GC/Collect0.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/Collect1.cs b/src/tests/GC/API/GC/Collect1.cs index d428bf10990bab..eb68971ab19053 100644 --- a/src/tests/GC/API/GC/Collect1.cs +++ b/src/tests/GC/API/GC/Collect1.cs @@ -4,10 +4,12 @@ // Tests GC.Collect(1) using System; +using Xunit; public class Test_Collect1 { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; int agen1 = GC.GetGeneration(array); diff --git a/src/tests/GC/API/GC/Collect1.csproj b/src/tests/GC/API/GC/Collect1.csproj index fd7b51c3039193..5b79bbe20e42df 100644 --- a/src/tests/GC/API/GC/Collect1.csproj +++ b/src/tests/GC/API/GC/Collect1.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/Collect_Aggressive.cs b/src/tests/GC/API/GC/Collect_Aggressive.cs index 264c49eb2b5844..ebbc1b75fdfe6f 100644 --- a/src/tests/GC/API/GC/Collect_Aggressive.cs +++ b/src/tests/GC/API/GC/Collect_Aggressive.cs @@ -4,10 +4,12 @@ using System; using System.Diagnostics; using System.Runtime.CompilerServices; +using Xunit; public class AggressiveCollect { - public static int Main() + [Fact] + public static int TestEntryPoint() { long before = CreateGarbage(); GC.Collect(2, GCCollectionMode.Aggressive, blocking: true, compacting: true); diff --git a/src/tests/GC/API/GC/Collect_Aggressive.csproj b/src/tests/GC/API/GC/Collect_Aggressive.csproj index fbed62fde60542..0a7cf88ce5f277 100644 --- a/src/tests/GC/API/GC/Collect_Aggressive.csproj +++ b/src/tests/GC/API/GC/Collect_Aggressive.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.cs b/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.cs index fbd84b118871ce..23ea2cd733a6f0 100644 --- a/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.cs +++ b/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.cs @@ -4,10 +4,12 @@ using System; using System.Diagnostics; using System.Runtime.CompilerServices; +using Xunit; public class AggressiveCollect_MultipleParameters { - public static int Main() + [Fact] + public static void TestEntryPoint() { long before = CreateGarbage(); GC.Collect(2, GCCollectionMode.Aggressive, blocking: true, compacting: true); @@ -55,7 +57,6 @@ public static int Main() } // If we got this far, we have successfully executed all the tests. - return 100; } [MethodImpl(MethodImplOptions.NoInlining)] diff --git a/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.csproj b/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.csproj index a2f9aa2b2359e1..21d2cb0012261c 100644 --- a/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.csproj +++ b/src/tests/GC/API/GC/Collect_Aggressive_MultipleParameters.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/GC/Collect_Default_1.csproj b/src/tests/GC/API/GC/Collect_Default_1.csproj index fb4b09e3f95d4c..fdd53998a902e7 100644 --- a/src/tests/GC/API/GC/Collect_Default_1.csproj +++ b/src/tests/GC/API/GC/Collect_Default_1.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 0 + 1 diff --git a/src/tests/GC/API/GC/Collect_Default_2.csproj b/src/tests/GC/API/GC/Collect_Default_2.csproj index 3dc093cfad136d..ba5476b5430213 100644 --- a/src/tests/GC/API/GC/Collect_Default_2.csproj +++ b/src/tests/GC/API/GC/Collect_Default_2.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 1 + 1 diff --git a/src/tests/GC/API/GC/Collect_Default_3.csproj b/src/tests/GC/API/GC/Collect_Default_3.csproj index c222fc8398c490..0ec009a4dbff5b 100644 --- a/src/tests/GC/API/GC/Collect_Default_3.csproj +++ b/src/tests/GC/API/GC/Collect_Default_3.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 2 + 1 diff --git a/src/tests/GC/API/GC/Collect_Forced_1.csproj b/src/tests/GC/API/GC/Collect_Forced_1.csproj index 68ccf82ad68ebd..88cd29d4c15f33 100644 --- a/src/tests/GC/API/GC/Collect_Forced_1.csproj +++ b/src/tests/GC/API/GC/Collect_Forced_1.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 0 + 1 diff --git a/src/tests/GC/API/GC/Collect_Forced_2.csproj b/src/tests/GC/API/GC/Collect_Forced_2.csproj index 614679d5d3d362..8d1b7839ebd67f 100644 --- a/src/tests/GC/API/GC/Collect_Forced_2.csproj +++ b/src/tests/GC/API/GC/Collect_Forced_2.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 1 + 1 diff --git a/src/tests/GC/API/GC/Collect_Forced_3.csproj b/src/tests/GC/API/GC/Collect_Forced_3.csproj index 305b3fa81751c2..52ea72617d337d 100644 --- a/src/tests/GC/API/GC/Collect_Forced_3.csproj +++ b/src/tests/GC/API/GC/Collect_Forced_3.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 2 + 1 diff --git a/src/tests/GC/API/GC/Collect_Optimized_1.csproj b/src/tests/GC/API/GC/Collect_Optimized_1.csproj index eab85ce11f5afd..e894d252b9ae65 100644 --- a/src/tests/GC/API/GC/Collect_Optimized_1.csproj +++ b/src/tests/GC/API/GC/Collect_Optimized_1.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 0 + 1 diff --git a/src/tests/GC/API/GC/Collect_Optimized_2.csproj b/src/tests/GC/API/GC/Collect_Optimized_2.csproj index 15c4ccda5fbafe..ed7173f36c3300 100644 --- a/src/tests/GC/API/GC/Collect_Optimized_2.csproj +++ b/src/tests/GC/API/GC/Collect_Optimized_2.csproj @@ -1,6 +1,10 @@ - Exe + + true + + + false 1 diff --git a/src/tests/GC/API/GC/Collect_Optimized_3.csproj b/src/tests/GC/API/GC/Collect_Optimized_3.csproj index df949d361c10bf..524a1da3f91897 100644 --- a/src/tests/GC/API/GC/Collect_Optimized_3.csproj +++ b/src/tests/GC/API/GC/Collect_Optimized_3.csproj @@ -1,6 +1,10 @@ - Exe + + true + + + false 2 diff --git a/src/tests/GC/API/GC/Collect_fail.cs b/src/tests/GC/API/GC/Collect_fail.cs index 3ea1d7decd6b73..d724890318c896 100644 --- a/src/tests/GC/API/GC/Collect_fail.cs +++ b/src/tests/GC/API/GC/Collect_fail.cs @@ -12,10 +12,12 @@ */ using System; +using Xunit; public class Test_Collect_fail { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; bool passed = false; diff --git a/src/tests/GC/API/GC/Collect_fail.csproj b/src/tests/GC/API/GC/Collect_fail.csproj index 9d52bc72ec6b3d..166dc6de5105fc 100644 --- a/src/tests/GC/API/GC/Collect_fail.csproj +++ b/src/tests/GC/API/GC/Collect_fail.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/Collect_neg.cs b/src/tests/GC/API/GC/Collect_neg.cs index 979d53016b33bf..5166a00b91c029 100644 --- a/src/tests/GC/API/GC/Collect_neg.cs +++ b/src/tests/GC/API/GC/Collect_neg.cs @@ -2,10 +2,12 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; +using Xunit; public class NegCollect { - public static int Main() + [Fact] + public static int TestEntryPoint() { bool retVal = true; GCCollectionMode[] invalidInputs = { (GCCollectionMode)(GCCollectionMode.Default - 1), (GCCollectionMode)(GCCollectionMode.Aggressive + 1) }; diff --git a/src/tests/GC/API/GC/Collect_neg.csproj b/src/tests/GC/API/GC/Collect_neg.csproj index 34d6e3c98db238..b309f2b301e2a9 100644 --- a/src/tests/GC/API/GC/Collect_neg.csproj +++ b/src/tests/GC/API/GC/Collect_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/CollectionCountTest.cs b/src/tests/GC/API/GC/CollectionCountTest.cs index e5fc7bc7e5e7d5..d480bee32d7863 100644 --- a/src/tests/GC/API/GC/CollectionCountTest.cs +++ b/src/tests/GC/API/GC/CollectionCountTest.cs @@ -12,6 +12,7 @@ */ using System; +using Xunit; public class CollectionCountTest { @@ -129,7 +130,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { CollectionCountTest test = new CollectionCountTest(); diff --git a/src/tests/GC/API/GC/CollectionCountTest.csproj b/src/tests/GC/API/GC/CollectionCountTest.csproj index 0d14b24d30d424..8cd35f7912313d 100644 --- a/src/tests/GC/API/GC/CollectionCountTest.csproj +++ b/src/tests/GC/API/GC/CollectionCountTest.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/Finalize.cs b/src/tests/GC/API/GC/Finalize.cs index 21cad9b2d61c01..abe2d22e6abee6 100644 --- a/src/tests/GC/API/GC/Finalize.cs +++ b/src/tests/GC/API/GC/Finalize.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_Finalize { @@ -35,7 +36,8 @@ public void RunTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/API/GC/Finalize.csproj b/src/tests/GC/API/GC/Finalize.csproj index 521c526c2fa53b..0374f3a338b491 100644 --- a/src/tests/GC/API/GC/Finalize.csproj +++ b/src/tests/GC/API/GC/Finalize.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.cs b/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.cs index 3f2cc439a97b1d..5f65336da9f3eb 100644 --- a/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.cs +++ b/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.cs @@ -6,6 +6,7 @@ using System.Diagnostics; using System.Collections.Generic; using System.Reflection; +using Xunit; public class Test_GetAllocatedBytesForCurrentThread { @@ -98,7 +99,8 @@ static bool TestCore1(bool testWithCollection) return true; } - public static int Main() + [Fact] + public static int TestEntryPoint() { // First test with collection if (!TestCore1(true)) diff --git a/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.csproj b/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.csproj index 63d34b1f8d16ad..bc5ccbaab9e4a1 100644 --- a/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.csproj +++ b/src/tests/GC/API/GC/GetAllocatedBytesForCurrentThread.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/GC/GetConfigurationVariables.csproj b/src/tests/GC/API/GC/GetConfigurationVariables.csproj index 30287f0a7b5e07..d51cb0b82cb0dd 100644 --- a/src/tests/GC/API/GC/GetConfigurationVariables.csproj +++ b/src/tests/GC/API/GC/GetConfigurationVariables.csproj @@ -1,6 +1,7 @@ - Exe + + true 0 diff --git a/src/tests/GC/API/GC/GetGCMemoryInfo.cs b/src/tests/GC/API/GC/GetGCMemoryInfo.cs index aeac49435e7122..831f4fc6551c47 100644 --- a/src/tests/GC/API/GC/GetGCMemoryInfo.cs +++ b/src/tests/GC/API/GC/GetGCMemoryInfo.cs @@ -5,6 +5,7 @@ using System; using System.Collections.Generic; using System.Threading; +using Xunit; public class Test_GetGCMemoryInfo { @@ -90,7 +91,8 @@ static object MakeLongLivedSOHAllocations() return listByteArray; } - public static int Main() + [Fact] + public static int TestEntryPoint() { // We will keep executing the test in case of a failure to see if we have multiple failures. bool isTestSucceeded = true; diff --git a/src/tests/GC/API/GC/GetGCMemoryInfo.csproj b/src/tests/GC/API/GC/GetGCMemoryInfo.csproj index a3e583fd618908..d334e8160a53d6 100644 --- a/src/tests/GC/API/GC/GetGCMemoryInfo.csproj +++ b/src/tests/GC/API/GC/GetGCMemoryInfo.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/GetGeneration.cs b/src/tests/GC/API/GC/GetGeneration.cs index 9e86f6204ddab3..aaf7468ce49f20 100644 --- a/src/tests/GC/API/GC/GetGeneration.cs +++ b/src/tests/GC/API/GC/GetGeneration.cs @@ -4,6 +4,7 @@ // Tests GC.GetGeneration using System; +using Xunit; public class GetGenerationTest { @@ -117,7 +118,8 @@ public bool RunTests() - public static int Main() + [Fact] + public static int TestEntryPoint() { GetGenerationTest t = new GetGenerationTest(); diff --git a/src/tests/GC/API/GC/GetGeneration.csproj b/src/tests/GC/API/GC/GetGeneration.csproj index 9b2082bee17a61..aeded066e0f3dd 100644 --- a/src/tests/GC/API/GC/GetGeneration.csproj +++ b/src/tests/GC/API/GC/GetGeneration.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/GC/GetGenerationWR.cs b/src/tests/GC/API/GC/GetGenerationWR.cs index 7be26328369785..c348635c99dd7b 100644 --- a/src/tests/GC/API/GC/GetGenerationWR.cs +++ b/src/tests/GC/API/GC/GetGenerationWR.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; +using Xunit; public class Dummy { @@ -48,7 +49,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); diff --git a/src/tests/GC/API/GC/GetGenerationWR.csproj b/src/tests/GC/API/GC/GetGenerationWR.csproj index ac7441211d255a..d3a11581375048 100644 --- a/src/tests/GC/API/GC/GetGenerationWR.csproj +++ b/src/tests/GC/API/GC/GetGenerationWR.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/GetGenerationWR2.cs b/src/tests/GC/API/GC/GetGenerationWR2.cs index be6c14ac249398..b6dcb41268c15d 100644 --- a/src/tests/GC/API/GC/GetGenerationWR2.cs +++ b/src/tests/GC/API/GC/GetGenerationWR2.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; /********************************************************************/ /* Test: GetGeneration /* Purpose: Test GC.GetGeneration() works @@ -13,9 +14,10 @@ namespace DefaultNamespace { using System; - internal class GetGeneration + public class GetGeneration { - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.Out.WriteLine("Test should return with ExitCode 100 ..."); Object o = new int[10]; diff --git a/src/tests/GC/API/GC/GetGenerationWR2.csproj b/src/tests/GC/API/GC/GetGenerationWR2.csproj index 376eef44664ef6..5b8fddbf3ff33c 100644 --- a/src/tests/GC/API/GC/GetGenerationWR2.csproj +++ b/src/tests/GC/API/GC/GetGenerationWR2.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/API/GC/GetGeneration_box.cs b/src/tests/GC/API/GC/GetGeneration_box.cs index f931d67f3e8559..cb310ce2159226 100644 --- a/src/tests/GC/API/GC/GetGeneration_box.cs +++ b/src/tests/GC/API/GC/GetGeneration_box.cs @@ -5,6 +5,7 @@ // should box parameter into an Object using System; +using Xunit; public struct StructType { } @@ -14,7 +15,9 @@ public enum EnumType { public class Test_GetGeneration_box { - public static int Main() { + [Fact] + public static void TestEntryPoint() + { // literals int gen = GC.GetGeneration(-1); Console.WriteLine(gen); @@ -73,6 +76,5 @@ public static int Main() { Console.WriteLine(gen); Console.WriteLine("Test passed"); - return 100; } } diff --git a/src/tests/GC/API/GC/GetGeneration_box.csproj b/src/tests/GC/API/GC/GetGeneration_box.csproj index a3fc3c30e942fe..2ed5ae808e81b3 100644 --- a/src/tests/GC/API/GC/GetGeneration_box.csproj +++ b/src/tests/GC/API/GC/GetGeneration_box.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GC/GetGeneration_fail.cs b/src/tests/GC/API/GC/GetGeneration_fail.cs index f19edf906aedd8..33b42d4de3f6db 100644 --- a/src/tests/GC/API/GC/GetGeneration_fail.cs +++ b/src/tests/GC/API/GC/GetGeneration_fail.cs @@ -4,10 +4,12 @@ // Tests GC.GetGeneration(null)..should throw exception: System.ArgumentNullException using System; +using Xunit; public class Test_GetGeneration_fail { - public static int Main() + [Fact] + public static int TestEntryPoint() { Object obj1 = new Object(); diff --git a/src/tests/GC/API/GC/GetGeneration_fail.csproj b/src/tests/GC/API/GC/GetGeneration_fail.csproj index f453c7a01504be..f633593b80ef75 100644 --- a/src/tests/GC/API/GC/GetGeneration_fail.csproj +++ b/src/tests/GC/API/GC/GetGeneration_fail.csproj @@ -1,6 +1,7 @@ - Exe + + true diff --git a/src/tests/GC/API/GC/GetTotalAllocatedBytes.cs b/src/tests/GC/API/GC/GetTotalAllocatedBytes.cs index 4e960ad1328692..d0f6c158cf4548 100644 --- a/src/tests/GC/API/GC/GetTotalAllocatedBytes.cs +++ b/src/tests/GC/API/GC/GetTotalAllocatedBytes.cs @@ -8,6 +8,7 @@ using System.Reflection; using System.Threading; using System.Threading.Tasks; +using Xunit; public class Test_GetTotalAllocatedBytes { @@ -171,12 +172,12 @@ public static void TestLohSohConcurrently() thr.Join(); } - public static int Main() + [Fact] + public static void TestEntryPoint() { TestSingleThreaded(); TestSingleThreadedLOH(); TestAnotherThread(); TestLohSohConcurrently(); - return 100; } } diff --git a/src/tests/GC/API/GC/GetTotalAllocatedBytes.csproj b/src/tests/GC/API/GC/GetTotalAllocatedBytes.csproj index 6ea7fdcaae135f..12ebf8d43caaa1 100644 --- a/src/tests/GC/API/GC/GetTotalAllocatedBytes.csproj +++ b/src/tests/GC/API/GC/GetTotalAllocatedBytes.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/GC/GetTotalMemory.csproj b/src/tests/GC/API/GC/GetTotalMemory.csproj index 8c5282f18571b0..8014ecd5a9fc12 100644 --- a/src/tests/GC/API/GC/GetTotalMemory.csproj +++ b/src/tests/GC/API/GC/GetTotalMemory.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/API/GC/GetTotalPauseDuration.cs b/src/tests/GC/API/GC/GetTotalPauseDuration.cs index 1435c3493aba92..3850c66fc73667 100644 --- a/src/tests/GC/API/GC/GetTotalPauseDuration.cs +++ b/src/tests/GC/API/GC/GetTotalPauseDuration.cs @@ -4,10 +4,12 @@ using System; using System.Diagnostics; +using Xunit; public class Test_Collect { - public static int Main() + [Fact] + public static int TestEntryPoint() { Stopwatch sw = Stopwatch.StartNew(); GC.Collect(); diff --git a/src/tests/GC/API/GC/GetTotalPauseDuration.csproj b/src/tests/GC/API/GC/GetTotalPauseDuration.csproj index d5308223116220..63d51518878b5d 100644 --- a/src/tests/GC/API/GC/GetTotalPauseDuration.csproj +++ b/src/tests/GC/API/GC/GetTotalPauseDuration.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/GC/KeepAlive.cs b/src/tests/GC/API/GC/KeepAlive.cs index 0a9337b9cfba00..aa3570fabd0061 100644 --- a/src/tests/GC/API/GC/KeepAlive.cs +++ b/src/tests/GC/API/GC/KeepAlive.cs @@ -16,6 +16,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_KeepAlive { @@ -79,7 +80,8 @@ public static bool RunTest() return success; } - public static int Main() + [Fact] + public static int TestEntryPoint() { bool success = RunTest(); diff --git a/src/tests/GC/API/GC/KeepAlive.csproj b/src/tests/GC/API/GC/KeepAlive.csproj index d12dd0eadf190b..43ba694d3958f4 100644 --- a/src/tests/GC/API/GC/KeepAlive.csproj +++ b/src/tests/GC/API/GC/KeepAlive.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GC/KeepAliveNull.cs b/src/tests/GC/API/GC/KeepAliveNull.cs index f797e7ddadc28b..c81d76b27acbf6 100644 --- a/src/tests/GC/API/GC/KeepAliveNull.cs +++ b/src/tests/GC/API/GC/KeepAliveNull.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_KeepAliveNull { @@ -45,7 +46,8 @@ public void RunTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/API/GC/KeepAliveNull.csproj b/src/tests/GC/API/GC/KeepAliveNull.csproj index 4c851cfc3448d4..5d7b887f382bc5 100644 --- a/src/tests/GC/API/GC/KeepAliveNull.csproj +++ b/src/tests/GC/API/GC/KeepAliveNull.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GC/KeepAliveRecur.cs b/src/tests/GC/API/GC/KeepAliveRecur.cs index 08fe45244ebc61..cc9c4be007563d 100644 --- a/src/tests/GC/API/GC/KeepAliveRecur.cs +++ b/src/tests/GC/API/GC/KeepAliveRecur.cs @@ -4,6 +4,7 @@ // Tests KeepAlive() in Recursive method using System; +using Xunit; public class Test_KeepAliveRecur { @@ -34,7 +35,8 @@ public static void foo(Object o) GC.KeepAlive(o); // Keeping object alive } - public static int Main() + [Fact] + public static int TestEntryPoint() { Dummy obj = new Dummy(); diff --git a/src/tests/GC/API/GC/KeepAliveRecur.csproj b/src/tests/GC/API/GC/KeepAliveRecur.csproj index dbcce512cfb345..798f280b4f3341 100644 --- a/src/tests/GC/API/GC/KeepAliveRecur.csproj +++ b/src/tests/GC/API/GC/KeepAliveRecur.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GC/MaxGeneration.cs b/src/tests/GC/API/GC/MaxGeneration.cs index 3326fd3f983e62..99067112ccda82 100644 --- a/src/tests/GC/API/GC/MaxGeneration.cs +++ b/src/tests/GC/API/GC/MaxGeneration.cs @@ -4,9 +4,11 @@ // Tests GC.MaxGeneration using System; +using Xunit; public class Test_MaxGeneration { - public static int Main() { + [Fact] + public static int TestEntryPoint() { for(int i=0;i<1000;i++) { Object[] array = new Object[i]; diff --git a/src/tests/GC/API/GC/MaxGeneration.csproj b/src/tests/GC/API/GC/MaxGeneration.csproj index d6cbd21707c5cb..f35097d4125911 100644 --- a/src/tests/GC/API/GC/MaxGeneration.csproj +++ b/src/tests/GC/API/GC/MaxGeneration.csproj @@ -1,6 +1,7 @@ - Exe + + true diff --git a/src/tests/GC/API/GC/ReRegisterForFinalize.cs b/src/tests/GC/API/GC/ReRegisterForFinalize.cs index 8e8678566a4418..32b60d7123bb93 100644 --- a/src/tests/GC/API/GC/ReRegisterForFinalize.cs +++ b/src/tests/GC/API/GC/ReRegisterForFinalize.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_ReRegisterForFinalize { @@ -59,7 +60,8 @@ public bool RunTest() { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); bool passed = temp.RunTest(); diff --git a/src/tests/GC/API/GC/ReRegisterForFinalize.csproj b/src/tests/GC/API/GC/ReRegisterForFinalize.csproj index 1aece2971c5f87..49b75cfb481777 100644 --- a/src/tests/GC/API/GC/ReRegisterForFinalize.csproj +++ b/src/tests/GC/API/GC/ReRegisterForFinalize.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GC/ReRegisterForFinalize_null.cs b/src/tests/GC/API/GC/ReRegisterForFinalize_null.cs index b8e101d61a43dd..8b41ba5b508232 100644 --- a/src/tests/GC/API/GC/ReRegisterForFinalize_null.cs +++ b/src/tests/GC/API/GC/ReRegisterForFinalize_null.cs @@ -4,6 +4,7 @@ // Tests ReRegisterForFinalize() using System; +using Xunit; public class Test_ReRegisterForFinalize_null { @@ -26,7 +27,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Test_ReRegisterForFinalize_null t = new Test_ReRegisterForFinalize_null(); if (t.RunTest()) diff --git a/src/tests/GC/API/GC/ReRegisterForFinalize_null.csproj b/src/tests/GC/API/GC/ReRegisterForFinalize_null.csproj index 5346d389e2fc85..a31184d34d13e0 100644 --- a/src/tests/GC/API/GC/ReRegisterForFinalize_null.csproj +++ b/src/tests/GC/API/GC/ReRegisterForFinalize_null.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/SuppressFinalize.cs b/src/tests/GC/API/GC/SuppressFinalize.cs index 746bd608c9696d..f8b1fbdd1a7130 100644 --- a/src/tests/GC/API/GC/SuppressFinalize.cs +++ b/src/tests/GC/API/GC/SuppressFinalize.cs @@ -5,41 +5,42 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_SuppressFinalize { - public class Dummy { + public class Dummy { - public static bool visited; - ~Dummy() { - Console.WriteLine("In Finalize() of Dummy"); - visited=true; - } - } + public static bool visited; + ~Dummy() { + Console.WriteLine("In Finalize() of Dummy"); + visited=true; + } + } [MethodImplAttribute(MethodImplOptions.NoInlining)] public static void RunTest() { - Dummy obj1 = new Dummy(); - GC.SuppressFinalize(obj1); // should not call the Finalizer() for obj1 - obj1=null; + Dummy obj1 = new Dummy(); + GC.SuppressFinalize(obj1); // should not call the Finalizer() for obj1 + obj1=null; } - public static int Main() + public static int Main() { RunTest(); - GC.Collect(); - GC.WaitForPendingFinalizers(); // call all Finalizers. - GC.Collect(); + GC.Collect(); + GC.WaitForPendingFinalizers(); // call all Finalizers. + GC.Collect(); - if(Dummy.visited == false) { - Console.WriteLine("Test for SuppressFinalize() passed!"); + if(Dummy.visited == false) { + Console.WriteLine("Test for SuppressFinalize() passed!"); return 100; - } - else { - Console.WriteLine("Test for SuppressFinalize() failed!"); + } + else { + Console.WriteLine("Test for SuppressFinalize() failed!"); return 1; - } - } + } + } } diff --git a/src/tests/GC/API/GC/SuppressFinalize.csproj b/src/tests/GC/API/GC/SuppressFinalize.csproj index dff48cb97c2f38..0638e7a3015b03 100644 --- a/src/tests/GC/API/GC/SuppressFinalize.csproj +++ b/src/tests/GC/API/GC/SuppressFinalize.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false + 1 diff --git a/src/tests/GC/API/GC/SuppressFinalize_Null.cs b/src/tests/GC/API/GC/SuppressFinalize_Null.cs index 5823dc1f5a8427..1202804318b0b2 100644 --- a/src/tests/GC/API/GC/SuppressFinalize_Null.cs +++ b/src/tests/GC/API/GC/SuppressFinalize_Null.cs @@ -4,6 +4,7 @@ // Tests SuppressFinalize() using System; +using Xunit; public class Test_SuppressFinalize_Null { @@ -26,7 +27,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Test_SuppressFinalize_Null t = new Test_SuppressFinalize_Null(); if (t.RunTest()) diff --git a/src/tests/GC/API/GC/SuppressFinalize_Null.csproj b/src/tests/GC/API/GC/SuppressFinalize_Null.csproj index 6635d8672bdd1d..4463efa27145aa 100644 --- a/src/tests/GC/API/GC/SuppressFinalize_Null.csproj +++ b/src/tests/GC/API/GC/SuppressFinalize_Null.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GC/TotalMemory.cs b/src/tests/GC/API/GC/TotalMemory.cs index b61a78566f58b5..6e62378ea56b24 100644 --- a/src/tests/GC/API/GC/TotalMemory.cs +++ b/src/tests/GC/API/GC/TotalMemory.cs @@ -4,10 +4,12 @@ // Tests GC.TotalMemory using System; +using Xunit; public class Test_TotalMemory { - public static int Main() { + [Fact] + public static int TestEntryPoint() { GC.Collect(); GC.Collect(); diff --git a/src/tests/GC/API/GC/TotalMemory.csproj b/src/tests/GC/API/GC/TotalMemory.csproj index 596eb49932029a..41577df4228c3a 100644 --- a/src/tests/GC/API/GC/TotalMemory.csproj +++ b/src/tests/GC/API/GC/TotalMemory.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 + true 1 + true 1 diff --git a/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.cs b/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.cs index 7e7209c07262a3..b9d2997ed5be8b 100644 --- a/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.cs +++ b/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_AddrOfPinnedObject_neg { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; bool passed = true; diff --git a/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.csproj b/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.csproj index 9e48185f59990f..809e6ffeb49d84 100644 --- a/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.csproj +++ b/src/tests/GC/API/GCHandle/AddrOfPinnedObject_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/Alloc.cs b/src/tests/GC/API/GCHandle/Alloc.cs index 79aa0eb1298ca5..0bca9dec7044f6 100644 --- a/src/tests/GC/API/GCHandle/Alloc.cs +++ b/src/tests/GC/API/GCHandle/Alloc.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Alloc { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; diff --git a/src/tests/GC/API/GCHandle/Alloc.csproj b/src/tests/GC/API/GCHandle/Alloc.csproj index 8f1d6ffb32c9c4..077e278f109715 100644 --- a/src/tests/GC/API/GCHandle/Alloc.csproj +++ b/src/tests/GC/API/GCHandle/Alloc.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Alloc_neg.cs b/src/tests/GC/API/GCHandle/Alloc_neg.cs index c44b758f92afb1..3106af4cedb940 100644 --- a/src/tests/GC/API/GCHandle/Alloc_neg.cs +++ b/src/tests/GC/API/GCHandle/Alloc_neg.cs @@ -11,10 +11,12 @@ the handle now and fill in the object later. using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Alloc_neg { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; array = null; diff --git a/src/tests/GC/API/GCHandle/Alloc_neg.csproj b/src/tests/GC/API/GCHandle/Alloc_neg.csproj index c23324e499377a..2bb942c5513b2d 100644 --- a/src/tests/GC/API/GCHandle/Alloc_neg.csproj +++ b/src/tests/GC/API/GCHandle/Alloc_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Alloc_neg2.cs b/src/tests/GC/API/GCHandle/Alloc_neg2.cs index b975577e50876c..73ed77ee14196e 100644 --- a/src/tests/GC/API/GCHandle/Alloc_neg2.cs +++ b/src/tests/GC/API/GCHandle/Alloc_neg2.cs @@ -7,10 +7,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Alloc_neg2 { - public static int Main() + [Fact] + public static int TestEntryPoint() { // The third element needs to be updated if Pinned is no longer the last value in the GCHandleType enum long[] invalidValues = { Int32.MinValue, -1, (long)(GCHandleType.Pinned + 1), Int32.MaxValue, UInt32.MaxValue, Int64.MaxValue }; diff --git a/src/tests/GC/API/GCHandle/Alloc_neg2.csproj b/src/tests/GC/API/GCHandle/Alloc_neg2.csproj index 6fd6d4d4aa28ff..2a69dfcb999a82 100644 --- a/src/tests/GC/API/GCHandle/Alloc_neg2.csproj +++ b/src/tests/GC/API/GCHandle/Alloc_neg2.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/Casting.cs b/src/tests/GC/API/GCHandle/Casting.cs index 19ef57ef6908c4..61395018bf261a 100644 --- a/src/tests/GC/API/GCHandle/Casting.cs +++ b/src/tests/GC/API/GCHandle/Casting.cs @@ -9,6 +9,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Dummy { @@ -113,7 +114,8 @@ public bool RunTests() } - public static int Main() + [Fact] + public static int TestEntryPoint() { CastingTest t = new CastingTest(); diff --git a/src/tests/GC/API/GCHandle/Casting.csproj b/src/tests/GC/API/GCHandle/Casting.csproj index 5946d43303d475..94605b16d682d2 100644 --- a/src/tests/GC/API/GCHandle/Casting.csproj +++ b/src/tests/GC/API/GCHandle/Casting.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/Equality.cs b/src/tests/GC/API/GCHandle/Equality.cs index 0be42e9e6b4161..4b14713231ad52 100644 --- a/src/tests/GC/API/GCHandle/Equality.cs +++ b/src/tests/GC/API/GCHandle/Equality.cs @@ -3,6 +3,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Equality { @@ -79,7 +80,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Equality e = new Equality(); diff --git a/src/tests/GC/API/GCHandle/Equality.csproj b/src/tests/GC/API/GCHandle/Equality.csproj index 3d5e3096d047f6..90223817bf03ff 100644 --- a/src/tests/GC/API/GCHandle/Equality.csproj +++ b/src/tests/GC/API/GCHandle/Equality.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Free.cs b/src/tests/GC/API/GCHandle/Free.cs index aaceded6f0b1a8..adc2f9b05b6b17 100644 --- a/src/tests/GC/API/GCHandle/Free.cs +++ b/src/tests/GC/API/GCHandle/Free.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Free { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; diff --git a/src/tests/GC/API/GCHandle/Free.csproj b/src/tests/GC/API/GCHandle/Free.csproj index 9aeaf494b6a050..76d06808bda741 100644 --- a/src/tests/GC/API/GCHandle/Free.csproj +++ b/src/tests/GC/API/GCHandle/Free.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Free_neg.cs b/src/tests/GC/API/GCHandle/Free_neg.cs index 4b6188f67111bd..85e3ba0029f162 100644 --- a/src/tests/GC/API/GCHandle/Free_neg.cs +++ b/src/tests/GC/API/GCHandle/Free_neg.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Free_neg { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; diff --git a/src/tests/GC/API/GCHandle/Free_neg.csproj b/src/tests/GC/API/GCHandle/Free_neg.csproj index 6974d529047d1a..bdcc2b8040cc19 100644 --- a/src/tests/GC/API/GCHandle/Free_neg.csproj +++ b/src/tests/GC/API/GCHandle/Free_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/HandleCopy.cs b/src/tests/GC/API/GCHandle/HandleCopy.cs index 0b1f45ab3b8e1f..9adf1a8fa18315 100644 --- a/src/tests/GC/API/GCHandle/HandleCopy.cs +++ b/src/tests/GC/API/GCHandle/HandleCopy.cs @@ -8,6 +8,7 @@ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; public class Test_HandleCopy { @@ -70,7 +71,8 @@ public bool RunTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); if (temp.RunTest()) diff --git a/src/tests/GC/API/GCHandle/HandleCopy.csproj b/src/tests/GC/API/GCHandle/HandleCopy.csproj index 7aa1d8a0471915..33bbf4a1bf877d 100644 --- a/src/tests/GC/API/GCHandle/HandleCopy.csproj +++ b/src/tests/GC/API/GCHandle/HandleCopy.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/IsAllocated.cs b/src/tests/GC/API/GCHandle/IsAllocated.cs index 2d5fd9e3c5c2fa..fff0951fceb43e 100644 --- a/src/tests/GC/API/GCHandle/IsAllocated.cs +++ b/src/tests/GC/API/GCHandle/IsAllocated.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_IsAllocated { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; diff --git a/src/tests/GC/API/GCHandle/IsAllocated.csproj b/src/tests/GC/API/GCHandle/IsAllocated.csproj index 90ee1212b6ceab..49fc6c6cb6a048 100644 --- a/src/tests/GC/API/GCHandle/IsAllocated.csproj +++ b/src/tests/GC/API/GCHandle/IsAllocated.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Normal.cs b/src/tests/GC/API/GCHandle/Normal.cs index f2890e59d013b3..887eef72949426 100644 --- a/src/tests/GC/API/GCHandle/Normal.cs +++ b/src/tests/GC/API/GCHandle/Normal.cs @@ -7,6 +7,7 @@ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; public class Test_Normal { @@ -34,7 +35,8 @@ public static GCHandle RunTest() } - public static int Main() { + [Fact] + public static int TestEntryPoint() { GCHandle handle = RunTest(); GC.Collect(); diff --git a/src/tests/GC/API/GCHandle/Normal.csproj b/src/tests/GC/API/GCHandle/Normal.csproj index a3d5caa82496f0..fc0d93871f44d3 100644 --- a/src/tests/GC/API/GCHandle/Normal.csproj +++ b/src/tests/GC/API/GCHandle/Normal.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/PinObj_neg.cs b/src/tests/GC/API/GCHandle/PinObj_neg.cs index f76d7f875cd6c6..f5cf919f1a1f4b 100644 --- a/src/tests/GC/API/GCHandle/PinObj_neg.cs +++ b/src/tests/GC/API/GCHandle/PinObj_neg.cs @@ -6,10 +6,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_PinObj_neg { - public static int Main() + [Fact] + public static int TestEntryPoint() { Object[] array = new Object[25]; diff --git a/src/tests/GC/API/GCHandle/PinObj_neg.csproj b/src/tests/GC/API/GCHandle/PinObj_neg.csproj index 8cd014f5a608ca..b548a7d2ddfa6a 100644 --- a/src/tests/GC/API/GCHandle/PinObj_neg.csproj +++ b/src/tests/GC/API/GCHandle/PinObj_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/Pinned.cs b/src/tests/GC/API/GCHandle/Pinned.cs index 0f216c7b721ac4..51056b90693218 100644 --- a/src/tests/GC/API/GCHandle/Pinned.cs +++ b/src/tests/GC/API/GCHandle/Pinned.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Pinned { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] array = new int[25]; diff --git a/src/tests/GC/API/GCHandle/Pinned.csproj b/src/tests/GC/API/GCHandle/Pinned.csproj index 1c4aad385b861b..985c7a65e809a0 100644 --- a/src/tests/GC/API/GCHandle/Pinned.csproj +++ b/src/tests/GC/API/GCHandle/Pinned.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Target.cs b/src/tests/GC/API/GCHandle/Target.cs index df7da2a1026f8f..7b6329119613c9 100644 --- a/src/tests/GC/API/GCHandle/Target.cs +++ b/src/tests/GC/API/GCHandle/Target.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Target { @@ -22,7 +23,8 @@ public int getFlag() return flag; } } - public static int Main() + [Fact] + public static int TestEntryPoint() { Dummy obj = new Dummy(99); bool passed = true; diff --git a/src/tests/GC/API/GCHandle/Target.csproj b/src/tests/GC/API/GCHandle/Target.csproj index c2abd20d6b50ea..183adaaa2f62a4 100644 --- a/src/tests/GC/API/GCHandle/Target.csproj +++ b/src/tests/GC/API/GCHandle/Target.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandle/Target_neg.cs b/src/tests/GC/API/GCHandle/Target_neg.cs index 7df9790c72c2ca..24539a59b68ef6 100644 --- a/src/tests/GC/API/GCHandle/Target_neg.cs +++ b/src/tests/GC/API/GCHandle/Target_neg.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_Target_neg { - public static int Main() + [Fact] + public static int TestEntryPoint() { bool passed = true; diff --git a/src/tests/GC/API/GCHandle/Target_neg.csproj b/src/tests/GC/API/GCHandle/Target_neg.csproj index b1513bdb591c24..06587fbcc153b9 100644 --- a/src/tests/GC/API/GCHandle/Target_neg.csproj +++ b/src/tests/GC/API/GCHandle/Target_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/ToFromIntPtr.cs b/src/tests/GC/API/GCHandle/ToFromIntPtr.cs index f62c860365d4c6..89b001357d8f9d 100644 --- a/src/tests/GC/API/GCHandle/ToFromIntPtr.cs +++ b/src/tests/GC/API/GCHandle/ToFromIntPtr.cs @@ -9,6 +9,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Dummy { @@ -114,7 +115,8 @@ public bool RunTests() } - public static int Main() + [Fact] + public static int TestEntryPoint() { ToFromIntPtrTest t = new ToFromIntPtrTest(); diff --git a/src/tests/GC/API/GCHandle/ToFromIntPtr.csproj b/src/tests/GC/API/GCHandle/ToFromIntPtr.csproj index d2aba16c100319..85308a79082f49 100644 --- a/src/tests/GC/API/GCHandle/ToFromIntPtr.csproj +++ b/src/tests/GC/API/GCHandle/ToFromIntPtr.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandle/Weak.cs b/src/tests/GC/API/GCHandle/Weak.cs index 93980edfdf88df..0c6b245faa35de 100644 --- a/src/tests/GC/API/GCHandle/Weak.cs +++ b/src/tests/GC/API/GCHandle/Weak.cs @@ -7,6 +7,7 @@ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; public class Test_Weak { @@ -39,7 +40,8 @@ public void RunTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/API/GCHandle/Weak.csproj b/src/tests/GC/API/GCHandle/Weak.csproj index 61b13247d833f3..efd2bea551c9fa 100644 --- a/src/tests/GC/API/GCHandle/Weak.csproj +++ b/src/tests/GC/API/GCHandle/Weak.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandleCollector/Count.cs b/src/tests/GC/API/GCHandleCollector/Count.cs index 299ef1b60b068c..34e32aba58eb9b 100644 --- a/src/tests/GC/API/GCHandleCollector/Count.cs +++ b/src/tests/GC/API/GCHandleCollector/Count.cs @@ -3,6 +3,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Count { @@ -207,7 +208,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Count c = new Count(); diff --git a/src/tests/GC/API/GCHandleCollector/Count.csproj b/src/tests/GC/API/GCHandleCollector/Count.csproj index 83aa55728255e5..0594548c969f2a 100644 --- a/src/tests/GC/API/GCHandleCollector/Count.csproj +++ b/src/tests/GC/API/GCHandleCollector/Count.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.cs b/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.cs index 91cfb774995e6a..e6af8f55a5f123 100644 --- a/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.cs +++ b/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.cs @@ -3,6 +3,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Handler { @@ -111,7 +112,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Handler h = new Handler(); diff --git a/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.csproj b/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.csproj index 8b12dcf7d4955d..2a96cdd48626e5 100644 --- a/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.csproj +++ b/src/tests/GC/API/GCHandleCollector/CtorsAndProperties.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/GCHandleCollector/NegTests.cs b/src/tests/GC/API/GCHandleCollector/NegTests.cs index 6b0eb47303b803..dcc4a3ebe27c86 100644 --- a/src/tests/GC/API/GCHandleCollector/NegTests.cs +++ b/src/tests/GC/API/GCHandleCollector/NegTests.cs @@ -3,6 +3,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Handler { @@ -161,7 +162,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Handler h = new Handler(); diff --git a/src/tests/GC/API/GCHandleCollector/NegTests.csproj b/src/tests/GC/API/GCHandleCollector/NegTests.csproj index 2be1f8990b0ef3..03cc4d09139e45 100644 --- a/src/tests/GC/API/GCHandleCollector/NegTests.csproj +++ b/src/tests/GC/API/GCHandleCollector/NegTests.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCHandleCollector/Usage.cs b/src/tests/GC/API/GCHandleCollector/Usage.cs index 9229fca9e7a651..6998a99c37f0f0 100644 --- a/src/tests/GC/API/GCHandleCollector/Usage.cs +++ b/src/tests/GC/API/GCHandleCollector/Usage.cs @@ -9,6 +9,7 @@ using System.Collections.Generic; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; // the class that holds the HandleCollectors public class HandleCollectorTest @@ -214,7 +215,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { if (GC.CollectionCount(0) > 20) { diff --git a/src/tests/GC/API/GCHandleCollector/Usage.csproj b/src/tests/GC/API/GCHandleCollector/Usage.csproj index 3171a3bc785017..3ef2bd6b6fca3c 100644 --- a/src/tests/GC/API/GCHandleCollector/Usage.csproj +++ b/src/tests/GC/API/GCHandleCollector/Usage.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/GCSettings/InputValidation.cs b/src/tests/GC/API/GCSettings/InputValidation.cs index 9fc9ec0dae6a35..8a645f759d3a3d 100644 --- a/src/tests/GC/API/GCSettings/InputValidation.cs +++ b/src/tests/GC/API/GCSettings/InputValidation.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; using System.Runtime; +using Xunit; //Testing what GC Latency Modes can be set, depending on what is the original GC setting public class InputValidation @@ -12,7 +13,8 @@ public class InputValidation static bool server = false; static bool nonConcurrent = false; - public static int Main() + [Fact] + public static int TestEntryPoint() { //Detect on what config we are running if (!DetectInitialMode()) diff --git a/src/tests/GC/API/GCSettings/InputValidation.csproj b/src/tests/GC/API/GCSettings/InputValidation.csproj index e692c9bee70acd..64e8d01eb31cb1 100644 --- a/src/tests/GC/API/GCSettings/InputValidation.csproj +++ b/src/tests/GC/API/GCSettings/InputValidation.csproj @@ -1,6 +1,7 @@ - Exe + + true diff --git a/src/tests/GC/API/NoGCRegion/Callback.cs b/src/tests/GC/API/NoGCRegion/Callback.cs index 2fcb7e2ef14e68..529b61b27cd11f 100644 --- a/src/tests/GC/API/NoGCRegion/Callback.cs +++ b/src/tests/GC/API/NoGCRegion/Callback.cs @@ -4,6 +4,7 @@ using System; using System.Runtime; using System.Threading; +using Xunit; public class Test { @@ -219,7 +220,8 @@ public unsafe static void Allocate(int oh, int mb) } } - public static int Main() + [Fact] + public static int TestEntryPoint() { int test = 0; try diff --git a/src/tests/GC/API/NoGCRegion/Callback.csproj b/src/tests/GC/API/NoGCRegion/Callback.csproj index 12e232d57aec5e..1b821c52b41f7a 100644 --- a/src/tests/GC/API/NoGCRegion/Callback.csproj +++ b/src/tests/GC/API/NoGCRegion/Callback.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/NoGCRegion/Callback_Svr.csproj b/src/tests/GC/API/NoGCRegion/Callback_Svr.csproj index ad826e47b56592..a9211df29c62cd 100644 --- a/src/tests/GC/API/NoGCRegion/Callback_Svr.csproj +++ b/src/tests/GC/API/NoGCRegion/Callback_Svr.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/API/NoGCRegion/NoGC.cs b/src/tests/GC/API/NoGCRegion/NoGC.cs index 1ac074974b260c..e1ec5076463134 100644 --- a/src/tests/GC/API/NoGCRegion/NoGC.cs +++ b/src/tests/GC/API/NoGCRegion/NoGC.cs @@ -1,5 +1,6 @@ using System; using System.Runtime; +using Xunit; public class Test { @@ -131,7 +132,8 @@ static bool TestAllocInNoGCRegion(int sizeMB, int sizeMBLOH, bool disallowFullBl return isCurrentTestPassed; } - public static int Main() + [Fact] + public static int TestEntryPoint() { arrByteArrayLen = 5000; arrByteArray = new byte[arrByteArrayLen][]; diff --git a/src/tests/GC/API/NoGCRegion/NoGC.csproj b/src/tests/GC/API/NoGCRegion/NoGC.csproj index 53b720b9bc5bfb..30a8bd56bb558a 100644 --- a/src/tests/GC/API/NoGCRegion/NoGC.csproj +++ b/src/tests/GC/API/NoGCRegion/NoGC.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/API/Refresh/Refresh.cs b/src/tests/GC/API/Refresh/Refresh.cs index 74190514133ab0..bf715d856387e2 100644 --- a/src/tests/GC/API/Refresh/Refresh.cs +++ b/src/tests/GC/API/Refresh/Refresh.cs @@ -2,12 +2,14 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; +using Xunit; namespace Refresh { - internal static class Program + public static class Program { - private static int Main() + [Fact] + public static int TestEntryPoint() { long hundred_mb = 100 * 1024 * 1024; long two_hundred_mb = 2 * hundred_mb; diff --git a/src/tests/GC/API/Refresh/Refresh.csproj b/src/tests/GC/API/Refresh/Refresh.csproj index cc3b9259c5b7d2..1897d83bd71122 100644 --- a/src/tests/GC/API/Refresh/Refresh.csproj +++ b/src/tests/GC/API/Refresh/Refresh.csproj @@ -5,6 +5,7 @@ 0 true true + true PdbOnly diff --git a/src/tests/GC/API/WeakReference/Finalize.cs b/src/tests/GC/API/WeakReference/Finalize.cs index 4afa17e189b8b8..7abc0db8e7612c 100644 --- a/src/tests/GC/API/WeakReference/Finalize.cs +++ b/src/tests/GC/API/WeakReference/Finalize.cs @@ -7,6 +7,7 @@ using System; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; +using Xunit; public class Test_Finalize { @@ -47,7 +48,8 @@ public GCHandle RunTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); GCHandle handle = temp.RunTest(); diff --git a/src/tests/GC/API/WeakReference/Finalize.csproj b/src/tests/GC/API/WeakReference/Finalize.csproj index 80e622a36169cd..7357730ed85645 100644 --- a/src/tests/GC/API/WeakReference/Finalize.csproj +++ b/src/tests/GC/API/WeakReference/Finalize.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/WeakReference/Finalize2.cs b/src/tests/GC/API/WeakReference/Finalize2.cs index e6910afddcd9d1..3bb46ecb313042 100644 --- a/src/tests/GC/API/WeakReference/Finalize2.cs +++ b/src/tests/GC/API/WeakReference/Finalize2.cs @@ -8,6 +8,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class GetTargetTest { @@ -180,7 +181,8 @@ public static void DestroyIsAliveTest() isAliveTest = null; } - public static int Main() + [Fact] + public static int TestEntryPoint() { NullHandle t = new NullHandle(); bool longPassed = false; diff --git a/src/tests/GC/API/WeakReference/Finalize2.csproj b/src/tests/GC/API/WeakReference/Finalize2.csproj index 6de8c8aabb34a6..6c9584d9e94d73 100644 --- a/src/tests/GC/API/WeakReference/Finalize2.csproj +++ b/src/tests/GC/API/WeakReference/Finalize2.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/WeakReference/IsAlive.cs b/src/tests/GC/API/WeakReference/IsAlive.cs index 677485d7b64fa5..db3a01040d4cf3 100644 --- a/src/tests/GC/API/WeakReference/IsAlive.cs +++ b/src/tests/GC/API/WeakReference/IsAlive.cs @@ -7,6 +7,7 @@ using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; +using Xunit; public class Test_IsAlive { public static int[] array; @@ -21,7 +22,8 @@ public static void DestroyArray() { array = null; } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateArray(); WeakReference weak = new WeakReference(array); diff --git a/src/tests/GC/API/WeakReference/IsAlive.csproj b/src/tests/GC/API/WeakReference/IsAlive.csproj index 8f2de355a1e7c2..f32d38215a24ac 100644 --- a/src/tests/GC/API/WeakReference/IsAlive.csproj +++ b/src/tests/GC/API/WeakReference/IsAlive.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/WeakReference/IsAlive_neg.cs b/src/tests/GC/API/WeakReference/IsAlive_neg.cs index dc28f5fd9a7a1f..f81c55b3d7651f 100644 --- a/src/tests/GC/API/WeakReference/IsAlive_neg.cs +++ b/src/tests/GC/API/WeakReference/IsAlive_neg.cs @@ -7,6 +7,7 @@ using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; +using Xunit; public class Test_IsAlive_neg { public static int[] array; @@ -27,7 +28,8 @@ public static void DestroyArray() { array = null; } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateArray(); WeakReference weak = CreateArrayWeakReference(); // array has ONLY a weakreference diff --git a/src/tests/GC/API/WeakReference/IsAlive_neg.csproj b/src/tests/GC/API/WeakReference/IsAlive_neg.csproj index 1797ef549eeb24..cb6a66be03b56c 100644 --- a/src/tests/GC/API/WeakReference/IsAlive_neg.csproj +++ b/src/tests/GC/API/WeakReference/IsAlive_neg.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/WeakReference/NullHandle.cs b/src/tests/GC/API/WeakReference/NullHandle.cs index 1b234dfc80e055..3a1a5dfcff781c 100644 --- a/src/tests/GC/API/WeakReference/NullHandle.cs +++ b/src/tests/GC/API/WeakReference/NullHandle.cs @@ -9,6 +9,7 @@ using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; +using Xunit; public class WR : WeakReference { @@ -35,7 +36,8 @@ public class Test_NullHandle [MethodImplAttribute(MethodImplOptions.NoInlining)] public static void DestroyWR() { wr = null; } - public static int Main() + [Fact] + public static int TestEntryPoint() { int numTests = 0; int numPassed = 0; diff --git a/src/tests/GC/API/WeakReference/NullHandle.csproj b/src/tests/GC/API/WeakReference/NullHandle.csproj index e0bc348dbc6b44..06bb8462977ee5 100644 --- a/src/tests/GC/API/WeakReference/NullHandle.csproj +++ b/src/tests/GC/API/WeakReference/NullHandle.csproj @@ -1,6 +1,7 @@ - Exe + + true PdbOnly diff --git a/src/tests/GC/API/WeakReference/Target.cs b/src/tests/GC/API/WeakReference/Target.cs index f7d09bd8c45d00..51bc0cef4e585d 100644 --- a/src/tests/GC/API/WeakReference/Target.cs +++ b/src/tests/GC/API/WeakReference/Target.cs @@ -7,6 +7,7 @@ using System; using System.Runtime.InteropServices; using System.Runtime.CompilerServices; +using Xunit; public class Dummy { @@ -96,7 +97,8 @@ public bool SetTargetTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { bool passed1, passed2; diff --git a/src/tests/GC/API/WeakReference/Target.csproj b/src/tests/GC/API/WeakReference/Target.csproj index c2abd20d6b50ea..183adaaa2f62a4 100644 --- a/src/tests/GC/API/WeakReference/Target.csproj +++ b/src/tests/GC/API/WeakReference/Target.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/WeakReference/TrackResurrection.cs b/src/tests/GC/API/WeakReference/TrackResurrection.cs index 58ec80fcb60d7b..bef077e52bafb9 100644 --- a/src/tests/GC/API/WeakReference/TrackResurrection.cs +++ b/src/tests/GC/API/WeakReference/TrackResurrection.cs @@ -11,9 +11,11 @@ using System; +using Xunit; public class Test_TrackResurrection { - public static int Main() { + [Fact] + public static int TestEntryPoint() { int[] array = new int[50]; Object obj = new Object(); diff --git a/src/tests/GC/API/WeakReference/TrackResurrection.csproj b/src/tests/GC/API/WeakReference/TrackResurrection.csproj index adf191efb9654a..760a31438c0e72 100644 --- a/src/tests/GC/API/WeakReference/TrackResurrection.csproj +++ b/src/tests/GC/API/WeakReference/TrackResurrection.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/API/WeakReference/multipleWRs.csproj b/src/tests/GC/API/WeakReference/multipleWRs.csproj index d2d0d362488c12..e4160a84ec4206 100644 --- a/src/tests/GC/API/WeakReference/multipleWRs.csproj +++ b/src/tests/GC/API/WeakReference/multipleWRs.csproj @@ -1,6 +1,10 @@ - Exe + + true + + + false 10000 diff --git a/src/tests/GC/API/WeakReference/multipleWRs_1.csproj b/src/tests/GC/API/WeakReference/multipleWRs_1.csproj index bc148682db0cb0..a6274aa22f2add 100644 --- a/src/tests/GC/API/WeakReference/multipleWRs_1.csproj +++ b/src/tests/GC/API/WeakReference/multipleWRs_1.csproj @@ -1,6 +1,10 @@ - Exe + + true + + + false 10000 track diff --git a/src/tests/GC/Coverage/271010.cs b/src/tests/GC/Coverage/271010.cs index 5fc751d4e5bfa6..d7a990c871a6d0 100644 --- a/src/tests/GC/Coverage/271010.cs +++ b/src/tests/GC/Coverage/271010.cs @@ -7,10 +7,12 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_271010 { - public static int Main() { + [Fact] + public static int TestEntryPoint() { int[][] otherarray; diff --git a/src/tests/GC/Coverage/271010.csproj b/src/tests/GC/Coverage/271010.csproj index 9786a39f592661..102b65da13e4b3 100644 --- a/src/tests/GC/Coverage/271010.csproj +++ b/src/tests/GC/Coverage/271010.csproj @@ -1,6 +1,7 @@ - Exe + + true 1 diff --git a/src/tests/GC/Coverage/LargeObjectAlloc.csproj b/src/tests/GC/Coverage/LargeObjectAlloc.csproj index e9f9328fa64eeb..233697186d896b 100644 --- a/src/tests/GC/Coverage/LargeObjectAlloc.csproj +++ b/src/tests/GC/Coverage/LargeObjectAlloc.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Coverage/LargeObjectAlloc2.cs b/src/tests/GC/Coverage/LargeObjectAlloc2.cs index 38b3312555be41..c03934dc7ce715 100644 --- a/src/tests/GC/Coverage/LargeObjectAlloc2.cs +++ b/src/tests/GC/Coverage/LargeObjectAlloc2.cs @@ -8,6 +8,7 @@ using System; +using Xunit; namespace LargeObjectTest { @@ -52,7 +53,8 @@ public LargeObject() public class Test { public static int ExitCode = 1; - public static int Main() + [Fact] + public static int TestEntryPoint() { int loop = 0; LargeObject largeobj; diff --git a/src/tests/GC/Coverage/LargeObjectAlloc2.csproj b/src/tests/GC/Coverage/LargeObjectAlloc2.csproj index f3beefce5e402b..e0ec279a0f8e4e 100644 --- a/src/tests/GC/Coverage/LargeObjectAlloc2.csproj +++ b/src/tests/GC/Coverage/LargeObjectAlloc2.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Coverage/delete_next_card_table.cs b/src/tests/GC/Coverage/delete_next_card_table.cs index e72c3c85b2b192..5f9c6ad15ca0b6 100644 --- a/src/tests/GC/Coverage/delete_next_card_table.cs +++ b/src/tests/GC/Coverage/delete_next_card_table.cs @@ -9,13 +9,14 @@ using System; using System.Collections; +using Xunit; public class delete_next_card_table { - public static int Main() + [Fact] + public static void TestEntryPoint() { new delete_next_card_table().DoMemoryChurn(); - return 100; } // this function attempts to allocate & free large amounts diff --git a/src/tests/GC/Coverage/delete_next_card_table.csproj b/src/tests/GC/Coverage/delete_next_card_table.csproj index 89f66f80bf0bc8..149534ae323c3b 100644 --- a/src/tests/GC/Coverage/delete_next_card_table.csproj +++ b/src/tests/GC/Coverage/delete_next_card_table.csproj @@ -1,6 +1,7 @@ - Exe + + true true true 1 diff --git a/src/tests/GC/Coverage/smalloom.cs b/src/tests/GC/Coverage/smalloom.cs index 6f45e33354ec3b..89d63425c9951a 100644 --- a/src/tests/GC/Coverage/smalloom.cs +++ b/src/tests/GC/Coverage/smalloom.cs @@ -2,14 +2,16 @@ // The .NET Foundation licenses this file to you under the MIT license. //Regression test for Dev 10 bug 479239: GC hangs on x86 rather than throwing OOM - + using System; using System.Runtime; +using Xunit; -class TestClass +public class TestClass { - public static int Main() - { + [Fact] + public static void TestEntryPoint() + { ByteArrayList list = new ByteArrayList(); @@ -26,8 +28,7 @@ public static int Main() Console.Write("NodesAllocated: "); Console.WriteLine(list.NodeCount); - return 100; - } + } class ByteArrayList { @@ -39,12 +40,12 @@ class Node public Node(int Size) { - data = new byte[Size]; - size = Size; + data = new byte[Size]; + size = Size; } } - + Node head; public int NodeCount = 0; @@ -68,4 +69,4 @@ public void AddByteArray(int size) } } -} +} diff --git a/src/tests/GC/Coverage/smalloom.csproj b/src/tests/GC/Coverage/smalloom.csproj index 0d8b16c47d7679..d1fe8fe952a797 100644 --- a/src/tests/GC/Coverage/smalloom.csproj +++ b/src/tests/GC/Coverage/smalloom.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Directory.Build.props b/src/tests/GC/Directory.Build.props new file mode 100644 index 00000000000000..17e80030ca09de --- /dev/null +++ b/src/tests/GC/Directory.Build.props @@ -0,0 +1,11 @@ + + + + + + + true + $(NoWarn);xUnit1013 + false + + diff --git a/src/tests/GC/Features/BackgroundGC/concurrentspin2.csproj b/src/tests/GC/Features/BackgroundGC/concurrentspin2.csproj index 726942c9e63b91..13d9aa95c65401 100644 --- a/src/tests/GC/Features/BackgroundGC/concurrentspin2.csproj +++ b/src/tests/GC/Features/BackgroundGC/concurrentspin2.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/BackgroundGC/foregroundgc.csproj b/src/tests/GC/Features/BackgroundGC/foregroundgc.csproj index 1125dbf65a8adb..76c6e7f16d69a8 100644 --- a/src/tests/GC/Features/BackgroundGC/foregroundgc.csproj +++ b/src/tests/GC/Features/BackgroundGC/foregroundgc.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.cs b/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.cs index 6301d155cdc0f7..22af9b848a261c 100644 --- a/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.cs +++ b/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.cs @@ -6,6 +6,7 @@ using System; using System.IO; using System.Runtime.CompilerServices; +using Xunit; public class Test_finalizeio { @@ -51,7 +52,8 @@ public void RunTest() { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); using (StreamWriter writer = File.CreateText("temp.txt")) diff --git a/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.csproj b/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.csproj index 4b67e6b7639b63..aa6a1dc83f49c2 100644 --- a/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeio/finalizeio.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.cs b/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.cs index 36d60d888dd808..59abe013685728 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.cs +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_finalizearray { @@ -37,7 +38,8 @@ public void RunTest() } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.csproj b/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.csproj index a47be6575ea77e..06be420a9995d2 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizearray.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.cs b/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.cs index a78752bbee2b37..428c3d84a6f927 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.cs +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.cs @@ -6,6 +6,7 @@ using System; using System.Threading; using System.Runtime.CompilerServices; +using Xunit; public class Test_finalizearraysleep { @@ -39,7 +40,8 @@ public void RunTest() { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.csproj b/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.csproj index d1cabd795dd930..ede8473f2e6429 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizearraysleep.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.cs b/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.cs index 7b978ab3f6978c..32be63eaaf999d 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.cs +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_finalizedest { @@ -42,7 +43,8 @@ public void RunTest() } } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.csproj b/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.csproj index 5ed7e045963b7e..548672b083a400 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizedest.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.cs b/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.cs index 742d469e58de74..0d2c5a4970bf9a 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.cs +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_finalizeexcep { @@ -43,7 +44,8 @@ public void RunTest() { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateObj temp= new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.csproj b/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.csproj index c18bcccf119ccd..bda8a406be13ee 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizeexcep.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.cs b/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.cs index e7b61a527c6f64..4e15642baa69ba 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.cs +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; namespace One { @@ -80,9 +81,10 @@ public bool RunTest() } } - class Test + public class Test { - static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.csproj b/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.csproj index 6ca2e8f36ea12e..90986468485c5e 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizeinherit.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.cs b/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.cs index 83e8621da0822b..e5dfec5baa2bc3 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.cs +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.cs @@ -6,6 +6,7 @@ using System; using System.Threading; using System.Runtime.CompilerServices; +using Xunit; public class Test_finalizenested { @@ -112,7 +113,8 @@ public static void AllocAndDealloc() temp.RunTest(); } - public static int Main() + [Fact] + public static int TestEntryPoint() { AllocAndDealloc(); diff --git a/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.csproj b/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.csproj index 8b5cd207fcd4f4..cac9f47119f1bd 100644 --- a/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.csproj +++ b/src/tests/GC/Features/Finalizer/finalizeother/finalizenested.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/GC-features.csproj b/src/tests/GC/Features/GC-features.csproj new file mode 100644 index 00000000000000..f751282d127da4 --- /dev/null +++ b/src/tests/GC/Features/GC-features.csproj @@ -0,0 +1,7 @@ + + + + + + + diff --git a/src/tests/GC/Features/HeapExpansion/Finalizer.cs b/src/tests/GC/Features/HeapExpansion/Finalizer.cs index 735e4873899dc9..cc68deea45144e 100644 --- a/src/tests/GC/Features/HeapExpansion/Finalizer.cs +++ b/src/tests/GC/Features/HeapExpansion/Finalizer.cs @@ -9,6 +9,7 @@ This test stimulates heap expansion on the finalizer thread using System.Runtime.CompilerServices; using System.Runtime.InteropServices; using TestLibrary; +using Xunit; public class Test_Finalizer { @@ -32,7 +33,8 @@ private static void CreateAndReleaseFinalizable() var t = new Test_Finalizer(); } - public static int Main() + [Fact] + public static void TestEntryPoint() { CreateAndReleaseFinalizable(); TestFramework.LogInformation("First Alloc"); @@ -44,6 +46,5 @@ public static int Main() GCUtil.FreePins(); TestFramework.LogInformation("Test passed"); - return 100; } } diff --git a/src/tests/GC/Features/HeapExpansion/Finalizer.csproj b/src/tests/GC/Features/HeapExpansion/Finalizer.csproj index 888112d1bae561..d731e3a96aa16c 100644 --- a/src/tests/GC/Features/HeapExpansion/Finalizer.csproj +++ b/src/tests/GC/Features/HeapExpansion/Finalizer.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/HeapExpansion/Handles.cs b/src/tests/GC/Features/HeapExpansion/Handles.cs index 6186ea2a31c06a..8fc042473d9eb0 100644 --- a/src/tests/GC/Features/HeapExpansion/Handles.cs +++ b/src/tests/GC/Features/HeapExpansion/Handles.cs @@ -9,6 +9,7 @@ This test stimulates heap expansion with both Pinned and unpinned handles using System.Collections.Generic; using System.Runtime.InteropServices; using TestLibrary; +using Xunit; public class Test_Handles { @@ -16,7 +17,8 @@ public class Test_Handles public static List pinnedList = new List(); public static int index = -1; - public static int Main() + [Fact] + public static void TestEntryPoint() { TestFramework.LogInformation("First Alloc"); GCUtil.Alloc(1024 * 1024, 50); @@ -31,6 +33,5 @@ public static int Main() GCUtil.FreePins(); TestFramework.LogInformation("Test passed"); - return 100; } } diff --git a/src/tests/GC/Features/HeapExpansion/Handles.csproj b/src/tests/GC/Features/HeapExpansion/Handles.csproj index 2cfc59e0f49bee..69b8791ac773de 100644 --- a/src/tests/GC/Features/HeapExpansion/Handles.csproj +++ b/src/tests/GC/Features/HeapExpansion/Handles.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/HeapExpansion/bestfit-finalize.csproj b/src/tests/GC/Features/HeapExpansion/bestfit-finalize.csproj index 2049c669d84d82..5abe8c8f4c1cd7 100644 --- a/src/tests/GC/Features/HeapExpansion/bestfit-finalize.csproj +++ b/src/tests/GC/Features/HeapExpansion/bestfit-finalize.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Features/HeapExpansion/bestfit-threaded.csproj b/src/tests/GC/Features/HeapExpansion/bestfit-threaded.csproj index 394f9fd40e84cc..8e21671738ec1e 100644 --- a/src/tests/GC/Features/HeapExpansion/bestfit-threaded.csproj +++ b/src/tests/GC/Features/HeapExpansion/bestfit-threaded.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Features/HeapExpansion/bestfit.csproj b/src/tests/GC/Features/HeapExpansion/bestfit.csproj index 66a337389990e5..2f3e37b8c1e552 100644 --- a/src/tests/GC/Features/HeapExpansion/bestfit.csproj +++ b/src/tests/GC/Features/HeapExpansion/bestfit.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 1 1000 50000 + true diff --git a/src/tests/GC/Features/HeapExpansion/bestfit_1.csproj b/src/tests/GC/Features/HeapExpansion/bestfit_1.csproj index fabfffe5902b04..c7f411251ee62b 100644 --- a/src/tests/GC/Features/HeapExpansion/bestfit_1.csproj +++ b/src/tests/GC/Features/HeapExpansion/bestfit_1.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false 1 1000 50000 + true diff --git a/src/tests/GC/Features/HeapExpansion/expandheap.cs b/src/tests/GC/Features/HeapExpansion/expandheap.cs index 58c8e4fa5cafb3..5762c7f7b13126 100644 --- a/src/tests/GC/Features/HeapExpansion/expandheap.cs +++ b/src/tests/GC/Features/HeapExpansion/expandheap.cs @@ -8,13 +8,12 @@ This test stimulates heap expansion on the finalizer thread using System; using System.Collections.Generic; using System.Runtime.InteropServices; +using Xunit; public class Test_expandheap { - - - - public static int Main() + [Fact] + public static void TestEntryPoint() { Console.WriteLine("First Alloc"); GCUtil.Alloc(1024*1024*4, 30); @@ -28,10 +27,5 @@ public static int Main() GCUtil.FreePins(); Console.WriteLine("Test passed"); - return 100; - } - - - } diff --git a/src/tests/GC/Features/HeapExpansion/expandheap.csproj b/src/tests/GC/Features/HeapExpansion/expandheap.csproj index c71d8d1073fcf7..3818ba192a0d6d 100644 --- a/src/tests/GC/Features/HeapExpansion/expandheap.csproj +++ b/src/tests/GC/Features/HeapExpansion/expandheap.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/HeapExpansion/plug.csproj b/src/tests/GC/Features/HeapExpansion/plug.csproj index 6920f8c203fe52..66b70daa5f8830 100644 --- a/src/tests/GC/Features/HeapExpansion/plug.csproj +++ b/src/tests/GC/Features/HeapExpansion/plug.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Features/HeapExpansion/pluggaps.cs b/src/tests/GC/Features/HeapExpansion/pluggaps.cs index 773135541be4c1..d8f19db08cba41 100644 --- a/src/tests/GC/Features/HeapExpansion/pluggaps.cs +++ b/src/tests/GC/Features/HeapExpansion/pluggaps.cs @@ -8,21 +8,21 @@ using System; using System.Runtime.InteropServices; using System.Collections.Generic; +using Xunit; public class Test_pluggaps { public static List gchList = new List(); public static List bList = new List(); - public static int Main() + [Fact] + public static void TestEntryPoint() { - Console.WriteLine("Beginning phase 1"); GCUtil.AllocWithGaps(); Console.WriteLine("phase 1 complete"); - // losing all live references to the unpinned byte arrays // this will fragment the heap with ~50 byte holes GCUtil.FreeNonPins(); @@ -44,7 +44,5 @@ public static int Main() GC.KeepAlive(gchList); GC.KeepAlive(bList); - - return 100; } } diff --git a/src/tests/GC/Features/HeapExpansion/pluggaps.csproj b/src/tests/GC/Features/HeapExpansion/pluggaps.csproj index 7ad02e3ee0702c..a886a4f2f54d33 100644 --- a/src/tests/GC/Features/HeapExpansion/pluggaps.csproj +++ b/src/tests/GC/Features/HeapExpansion/pluggaps.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.cs index 83b47fe50b34ff..d3f09603512e11 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.cs @@ -4,6 +4,7 @@ // Tests KeepAlive() for array of objects using System; +using Xunit; public class Test_keepalivearray { @@ -16,7 +17,8 @@ public class Dummy { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { int returnValue = 0; Dummy[] obj = new Dummy[100]; diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.csproj index 1f79c3f0a7f676..ac9a50e71ef610 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivearray.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.cs index 282543e638bba4..5ad362d353a4c8 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.cs @@ -7,6 +7,7 @@ namespace Default { using System; +using Xunit; public class Graph { @@ -240,7 +241,8 @@ public void AddEdge(Edge x, Edge y) { public class Test { public static int exitCode = 0; - public static int Main() + [Fact] + public static int TestEntryPoint() { Graph.flag=false; exitCode = 100; diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.csproj index 05f6a146223b7c..a388d7e5804f5d 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivedirectedgraph.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.cs index 99b7224720be81..766fba9d25a271 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.cs @@ -5,6 +5,7 @@ using System; using System.Collections; +using Xunit; public class Test_keepalivefinalize { @@ -29,7 +30,8 @@ public class Dummy2 { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { int returnValue = 0; Dummy1 obj = new Dummy1(); diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.csproj index 9b008721ee99cd..ec5f5527441403 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivefinalize.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.cs index 6dec5f03bbb779..36e882fd89023e 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_keepalivehandle { public class Dummy { @@ -16,7 +17,8 @@ public class Dummy { } } - public static int Main() { + [Fact] + public static int TestEntryPoint() { int returnValue = 0; Dummy obj = new Dummy(); diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.csproj index 9bbc077047d1e2..6db85f3295cdfc 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivehandle.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.cs index 2a5a7599c8a556..148ed947212cc4 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Test_keepalivescope { @@ -56,7 +57,8 @@ public void RunTest() { } - public static int Main() { + [Fact] + public static int TestEntryPoint() { CreateObj temp = new CreateObj(); temp.RunTest(); diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.csproj index 93da64750dfcf3..4193aa6ef2ffdb 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivescope.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.cs index 3fa570e63a81b0..eccd5517e1207f 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.cs @@ -4,6 +4,7 @@ // Tests KeepAlive() in try...catch...finally using System; +using Xunit; public class Test_keepalivetry { @@ -19,7 +20,8 @@ public class Dummy } } - public static int Main() + [Fact] + public static int TestEntryPoint() { Dummy[] obj = new Dummy[100]; diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.csproj index ee472f5cdd1510..bde15ed6521afd 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetry.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.cs b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.cs index 692c730229044e..273d4be71725b0 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.cs +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.cs @@ -4,66 +4,66 @@ // Tests KeepAlive() with different types of inputs using System; +using Xunit; public class Test { - public class Dummy { + public class Dummy { - public static bool visited; - ~Dummy() { - //Console.WriteLine("In Finalize() of Dummy"); - visited=true; - } - } + public static bool visited; + ~Dummy() { + //Console.WriteLine("In Finalize() of Dummy"); + visited=true; + } + } - public struct StrDummy { - public int val; - public static bool flag; + public struct StrDummy { + public int val; + public static bool flag; - public StrDummy(int v) { - val=v; - flag=true; - } - } + public StrDummy(int v) { + val=v; + flag=true; + } + } - public enum Color - { - Red, Blue, Green - } + public enum Color + { + Red, Blue, Green + } - public static int Main() { + [Fact] + public static int TestEntryPoint() + { int returnValue = 0; - Dummy obj = new Dummy(); - StrDummy strobj = new StrDummy(999); - Color enumobj = new Color(); - - GC.Collect(); - GC.WaitForPendingFinalizers(); - - - if((Dummy.visited == false) && (StrDummy.flag==true)) { // has not visited the Finalize() + Dummy obj = new Dummy(); + StrDummy strobj = new StrDummy(999); + Color enumobj = new Color(); + + GC.Collect(); + GC.WaitForPendingFinalizers(); + + + if((Dummy.visited == false) && (StrDummy.flag==true)) { // has not visited the Finalize() returnValue = 100; - Console.WriteLine("Test passed!"); - } - else { + Console.WriteLine("Test passed!"); + } + else { returnValue = 1; - Console.WriteLine("Test failed!"); - } + Console.WriteLine("Test failed!"); + } - GC.KeepAlive(obj); // will keep alive 'obj' till this point - GC.KeepAlive(1000000); - GC.KeepAlive("long string for testing"); - GC.KeepAlive(-12345678); - GC.KeepAlive(3456.8989); - GC.KeepAlive(true); - GC.KeepAlive(strobj); - GC.KeepAlive(enumobj); + GC.KeepAlive(obj); // will keep alive 'obj' till this point + GC.KeepAlive(1000000); + GC.KeepAlive("long string for testing"); + GC.KeepAlive(-12345678); + GC.KeepAlive(3456.8989); + GC.KeepAlive(true); + GC.KeepAlive(strobj); + GC.KeepAlive(enumobj); return returnValue; - - } + + } } - - - diff --git a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.csproj b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.csproj index 1b7226c031456d..9d476df4511a91 100644 --- a/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.csproj +++ b/src/tests/GC/Features/KeepAlive/keepaliveother/keepalivetypes.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/LOHCompaction/lohcompact_stress.csproj b/src/tests/GC/Features/LOHCompaction/lohcompact_stress.csproj index c0fd7b8e86c50b..38d43c56368b0b 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompact_stress.csproj +++ b/src/tests/GC/Features/LOHCompaction/lohcompact_stress.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/LOHCompaction/lohcompactapi.cs b/src/tests/GC/Features/LOHCompaction/lohcompactapi.cs index d69ae1d2189f21..1ef896544111ff 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompactapi.cs +++ b/src/tests/GC/Features/LOHCompaction/lohcompactapi.cs @@ -5,17 +5,19 @@ using System.Collections.Generic; using System.Runtime; using System.Reflection; +using Xunit; namespace LOHCompactAPI { - class Program + public class Program { static int ListSize = 500; static List shortLivedList = new List(ListSize); static List LongLivedList = new List(ListSize); - public static int Main() + [Fact] + public static int TestEntryPoint() { int retVal=0; for (int i = 0; i < 3; i++) diff --git a/src/tests/GC/Features/LOHCompaction/lohcompactapi.csproj b/src/tests/GC/Features/LOHCompaction/lohcompactapi.csproj index 2a27e5e46ea4f3..ea2caae289d091 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompactapi.csproj +++ b/src/tests/GC/Features/LOHCompaction/lohcompactapi.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/LOHCompaction/lohcompactapi2.csproj b/src/tests/GC/Features/LOHCompaction/lohcompactapi2.csproj index 264ab667e031d8..b4c36cae8014b3 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompactapi2.csproj +++ b/src/tests/GC/Features/LOHCompaction/lohcompactapi2.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.cs b/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.cs index da5a02dbf2efc8..27576573f458b0 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.cs +++ b/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.cs @@ -3,15 +3,17 @@ using System; using System.Runtime; +using Xunit; namespace LOHCompactAPI { - class Program + public class Program { - public static int Main() + [Fact] + public static int TestEntryPoint() { for(int i = 0; i <= 5; i++) { diff --git a/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.csproj b/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.csproj index 6b69245289469e..e0276b5b96d115 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.csproj +++ b/src/tests/GC/Features/LOHCompaction/lohcompactapi_exceptions.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/LOHCompaction/lohcompactscenariorepro.csproj b/src/tests/GC/Features/LOHCompaction/lohcompactscenariorepro.csproj index d4c26a1dbc893e..5eac3c5663aadd 100644 --- a/src/tests/GC/Features/LOHCompaction/lohcompactscenariorepro.csproj +++ b/src/tests/GC/Features/LOHCompaction/lohcompactscenariorepro.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/LOHCompaction/lohpin.cs b/src/tests/GC/Features/LOHCompaction/lohpin.cs index 007b80718cb6a3..ed2239c41d5b84 100644 --- a/src/tests/GC/Features/LOHCompaction/lohpin.cs +++ b/src/tests/GC/Features/LOHCompaction/lohpin.cs @@ -8,10 +8,11 @@ using System.Threading; using System.Runtime.InteropServices; using System.Runtime; +using Xunit; namespace LOHPin { - class LOHPin + public class LOHPin { //Pin an object on the Large Object Heap and verify it does not move during a LOH compaction //Also verify that most of the large objects not pinned have moved @@ -22,7 +23,8 @@ class LOHPin * - compact LOH then check the address of the objects * */ - static int Main() + [Fact] + public static int TestEntryPoint() { List GCHandleList = new List(); int ListSize = 300; @@ -102,12 +104,6 @@ static int Main() Console.WriteLine("Test passed"); return 100; - } - - - } - - } diff --git a/src/tests/GC/Features/LOHCompaction/lohpin.csproj b/src/tests/GC/Features/LOHCompaction/lohpin.csproj index 4a094bfd937005..4d0eed8e8177ff 100644 --- a/src/tests/GC/Features/LOHCompaction/lohpin.csproj +++ b/src/tests/GC/Features/LOHCompaction/lohpin.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Features/LOHFragmentation/lohfragmentation.cs b/src/tests/GC/Features/LOHFragmentation/lohfragmentation.cs index 07d7ce6b95eddc..7e5f3efe0d970b 100644 --- a/src/tests/GC/Features/LOHFragmentation/lohfragmentation.cs +++ b/src/tests/GC/Features/LOHFragmentation/lohfragmentation.cs @@ -4,6 +4,7 @@ using System; using System.Collections.Generic; +using Xunit; //Repro from http://www.simple-talk.com/dotnet/.net-framework/the-dangers-of-the-large-object-heap/ @@ -13,7 +14,7 @@ namespace LOH_test { - class Program + public class Program { //percent difference between the bytes allocated with small blocks only and with larger blocks //This accounts for difference in fragmentation @@ -114,7 +115,8 @@ static int Fill(bool allocateBigBlocks) - static int Main() + [Fact] + public static int TestEntryPoint() { // Display results for cases both with and without the larger blocks @@ -134,7 +136,6 @@ static int Main() } Console.WriteLine("Test Passed"); return 100; - } } diff --git a/src/tests/GC/Features/LOHFragmentation/lohfragmentation.csproj b/src/tests/GC/Features/LOHFragmentation/lohfragmentation.csproj index 90157e63837478..78355f6997643f 100644 --- a/src/tests/GC/Features/LOHFragmentation/lohfragmentation.csproj +++ b/src/tests/GC/Features/LOHFragmentation/lohfragmentation.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Features/PartialCompaction/eco1.csproj b/src/tests/GC/Features/PartialCompaction/eco1.csproj index 2b42702d9467f5..6ced6544981a4f 100644 --- a/src/tests/GC/Features/PartialCompaction/eco1.csproj +++ b/src/tests/GC/Features/PartialCompaction/eco1.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/PartialCompaction/partialcompactiontest.csproj b/src/tests/GC/Features/PartialCompaction/partialcompactiontest.csproj index 2e09d841930a6e..671d82579b567b 100644 --- a/src/tests/GC/Features/PartialCompaction/partialcompactiontest.csproj +++ b/src/tests/GC/Features/PartialCompaction/partialcompactiontest.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/PartialCompaction/partialcompactionwloh.csproj b/src/tests/GC/Features/PartialCompaction/partialcompactionwloh.csproj index 83562023a9cc39..fc89297fcc2c73 100644 --- a/src/tests/GC/Features/PartialCompaction/partialcompactionwloh.csproj +++ b/src/tests/GC/Features/PartialCompaction/partialcompactionwloh.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.cs b/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.cs index e3da77d5b22dc9..e42bbf419eda15 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.cs +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.cs @@ -7,10 +7,12 @@ using System; using System.Runtime.InteropServices; using System.Security; +using Xunit; public class Test_PinnedCollect { - public static int Main() + [Fact] + public static int TestEntryPoint() { float[] arr = new float[100]; GCHandle handle1 = GCUtil.Alloc(arr, GCHandleType.Pinned); diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.csproj b/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.csproj index c67dcaf6e08865..177b264816dd17 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.csproj +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedCollect.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.cs b/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.cs index 8156f7b38340a8..7cc392bf48cbda 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.cs +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.cs @@ -7,10 +7,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_PinnedHandle { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] arr = new int[100]; GCHandle handle = GCUtil.Alloc(arr, GCHandleType.Pinned); diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.csproj b/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.csproj index ac47ad46fd6860..a81b0cf11806d3 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.csproj +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedHandle.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.cs b/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.cs index 3a170ffdcc3e22..9d2a92cdca4973 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.cs +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.cs @@ -5,10 +5,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_PinnedInt { - public static int Main() + [Fact] + public static int TestEntryPoint() { int i = 10; Object temp1, temp2; diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.csproj b/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.csproj index 74aefd5ae06199..0687df03d2ffb5 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.csproj +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedInt.csproj @@ -1,6 +1,7 @@ - Exe + + true true true 1 diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.cs b/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.cs index bbf86d87babd39..a241a30c724c13 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.cs +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.cs @@ -6,9 +6,11 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_PinnedMany { - public static int Main() + [Fact] + public static int TestEntryPoint() { int NUM = 2500; int[][] arr = new int[NUM][]; diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.csproj b/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.csproj index 930a9a26178be3..562bff7d45eb0b 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.csproj +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedMany.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.cs b/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.cs index f96705495c07ed..fd444f287d4da3 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.cs +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.cs @@ -6,10 +6,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_PinnedMultiple { - public static int Main() + [Fact] + public static int TestEntryPoint() { int[] arr = new int[1000]; GCHandle[] arrhandle = new GCHandle[10000]; // array of handles to the same object diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.csproj b/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.csproj index 0650080c6d0f09..f46f3bda9d3cab 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.csproj +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedMultiple.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.cs b/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.cs index 2387c847199459..ad6e0536cd812f 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.cs +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.cs @@ -6,10 +6,12 @@ using System; using System.Runtime.InteropServices; +using Xunit; public class Test_PinnedObject { - public static int Main() + [Fact] + public static int TestEntryPoint() { Object[] arr = new Object[100]; diff --git a/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.csproj b/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.csproj index b7369551b37443..b03cff129a97c2 100644 --- a/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.csproj +++ b/src/tests/GC/Features/Pinning/PinningOther/PinnedObject.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Features/SustainedLowLatency/scenario.csproj b/src/tests/GC/Features/SustainedLowLatency/scenario.csproj index 304d9de8163496..e6fba7088ca754 100644 --- a/src/tests/GC/Features/SustainedLowLatency/scenario.csproj +++ b/src/tests/GC/Features/SustainedLowLatency/scenario.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race.csproj b/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race.csproj index 116fa63f89ca4f..8dca69c3e5cb1c 100644 --- a/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race.csproj +++ b/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race_reverse.csproj b/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race_reverse.csproj index 6f97e2bb4c1f83..a4a9b3e833f054 100644 --- a/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race_reverse.csproj +++ b/src/tests/GC/Features/SustainedLowLatency/sustainedlowlatency_race_reverse.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 diff --git a/src/tests/GC/GC.csproj b/src/tests/GC/GC.csproj new file mode 100644 index 00000000000000..3b5d267705c719 --- /dev/null +++ b/src/tests/GC/GC.csproj @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/src/tests/GC/LargeMemory/API/gc/collect.csproj b/src/tests/GC/LargeMemory/API/gc/collect.csproj index 8f307b8d4582f5..ff3d22768a68da 100644 --- a/src/tests/GC/LargeMemory/API/gc/collect.csproj +++ b/src/tests/GC/LargeMemory/API/gc/collect.csproj @@ -1,8 +1,13 @@ - Exe + + true true + + + false 2048 + 1 diff --git a/src/tests/GC/LargeMemory/API/gc/getgeneration.csproj b/src/tests/GC/LargeMemory/API/gc/getgeneration.csproj index c6c790388183f1..1d62702000953c 100644 --- a/src/tests/GC/LargeMemory/API/gc/getgeneration.csproj +++ b/src/tests/GC/LargeMemory/API/gc/getgeneration.csproj @@ -1,8 +1,13 @@ - Exe + + true true + + + false 2048 + 1 diff --git a/src/tests/GC/LargeMemory/API/gc/gettotalmemory.csproj b/src/tests/GC/LargeMemory/API/gc/gettotalmemory.csproj index 88bcbe4a9daa7a..a471331500ea52 100644 --- a/src/tests/GC/LargeMemory/API/gc/gettotalmemory.csproj +++ b/src/tests/GC/LargeMemory/API/gc/gettotalmemory.csproj @@ -1,7 +1,11 @@ - Exe + + true true + + + false 2048 diff --git a/src/tests/GC/LargeMemory/API/gc/keepalive.csproj b/src/tests/GC/LargeMemory/API/gc/keepalive.csproj index 8a408eef7b54a4..46ef7e8deeee89 100644 --- a/src/tests/GC/LargeMemory/API/gc/keepalive.csproj +++ b/src/tests/GC/LargeMemory/API/gc/keepalive.csproj @@ -1,8 +1,13 @@ - Exe + + true true + + + false 2048 + 1 diff --git a/src/tests/GC/LargeMemory/API/gc/reregisterforfinalize.csproj b/src/tests/GC/LargeMemory/API/gc/reregisterforfinalize.csproj index f76c7d6b789d08..9b613bb7fbb4bf 100644 --- a/src/tests/GC/LargeMemory/API/gc/reregisterforfinalize.csproj +++ b/src/tests/GC/LargeMemory/API/gc/reregisterforfinalize.csproj @@ -1,8 +1,13 @@ - Exe + + true true + + + false 2048 + 1 diff --git a/src/tests/GC/LargeMemory/API/gc/suppressfinalize.csproj b/src/tests/GC/LargeMemory/API/gc/suppressfinalize.csproj index f358001e6d79ca..fd8b17e8bba77f 100644 --- a/src/tests/GC/LargeMemory/API/gc/suppressfinalize.csproj +++ b/src/tests/GC/LargeMemory/API/gc/suppressfinalize.csproj @@ -1,8 +1,13 @@ - Exe - true + + true + + + false 2048 + + true 1 diff --git a/src/tests/GC/LargeMemory/Allocation/finalizertest.csproj b/src/tests/GC/LargeMemory/Allocation/finalizertest.csproj index 7d41b536933d5a..3112098525d874 100644 --- a/src/tests/GC/LargeMemory/Allocation/finalizertest.csproj +++ b/src/tests/GC/LargeMemory/Allocation/finalizertest.csproj @@ -1,8 +1,13 @@ - Exe + + true true + + + false 2048 + 1 diff --git a/src/tests/GC/LargeMemory/Allocation/largeexceptiontest.csproj b/src/tests/GC/LargeMemory/Allocation/largeexceptiontest.csproj index 979d4f2524a70b..ca46149c5eaef6 100644 --- a/src/tests/GC/LargeMemory/Allocation/largeexceptiontest.csproj +++ b/src/tests/GC/LargeMemory/Allocation/largeexceptiontest.csproj @@ -1,8 +1,13 @@ - Exe + + true true + + + false 2048 + 1 diff --git a/src/tests/GC/LargeMemory/Regressions/largearraytest.cs b/src/tests/GC/LargeMemory/Regressions/largearraytest.cs index 544ba2f07cd80e..e99a91486597e4 100644 --- a/src/tests/GC/LargeMemory/Regressions/largearraytest.cs +++ b/src/tests/GC/LargeMemory/Regressions/largearraytest.cs @@ -7,10 +7,12 @@ */ using System; +using Xunit; public class LargeArrayTest { - public static int Main() { + [Fact] + public static int TestEntryPoint() { for (int i=0; i<= 100; i++) { try { diff --git a/src/tests/GC/LargeMemory/Regressions/largearraytest.csproj b/src/tests/GC/LargeMemory/Regressions/largearraytest.csproj index fb22f3046bac03..5e9254f27795bd 100644 --- a/src/tests/GC/LargeMemory/Regressions/largearraytest.csproj +++ b/src/tests/GC/LargeMemory/Regressions/largearraytest.csproj @@ -1,6 +1,7 @@ - Exe + + true true + true true diff --git a/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.cs b/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.cs index 91ebca02e7d44b..ba3ff64e7a82df 100644 --- a/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.cs +++ b/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.cs @@ -3,11 +3,13 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Runtime_76219 { [MethodImpl(MethodImplOptions.Synchronized)] - public static int Main() + [Fact] + public static void TestEntryPoint() { for (int i = 0; i < 100; i++) { @@ -19,7 +21,6 @@ public static int Main() GC.WaitForPendingFinalizers(); GC.Collect(); } - return 100; } [MethodImpl(MethodImplOptions.Synchronized | MethodImplOptions.NoInlining)] diff --git a/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.csproj b/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.csproj index aeec2e9d6b4cd7..4d0c608a2247fb 100644 --- a/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.csproj +++ b/src/tests/GC/Regressions/Github/Runtime_76219/Runtime_76219.csproj @@ -1,6 +1,7 @@ - Exe + + true True 1 diff --git a/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.cs b/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.cs index b6e16fe5847fd8..adc4692b435632 100644 --- a/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.cs +++ b/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.cs @@ -4,6 +4,7 @@ using System; using System.Diagnostics; using System.Runtime.CompilerServices; +using Xunit; public struct MyStruct { @@ -61,7 +62,8 @@ static string RunTest() var wrapper = creator.GetMyStructWrapper>(); return wrapper.ToString(); } - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Expected: MyStruct`2[System.Exception,GenStruct`1[System.String]] = 456"); diff --git a/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.csproj b/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.csproj index 570644f1dbcb7e..c8d7c17797c6c6 100644 --- a/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.csproj +++ b/src/tests/GC/Regressions/Github/runtime_32848/runtime_32848.csproj @@ -1,6 +1,7 @@ - Exe + + true diff --git a/src/tests/GC/Regressions/dev10bugs/536168/536168.cs b/src/tests/GC/Regressions/dev10bugs/536168/536168.cs index 60690cbd64aa6e..f1b8a7f8e01ed9 100644 --- a/src/tests/GC/Regressions/dev10bugs/536168/536168.cs +++ b/src/tests/GC/Regressions/dev10bugs/536168/536168.cs @@ -4,6 +4,7 @@ using System; using System.Threading; +using Xunit; public class Program { @@ -36,7 +37,8 @@ public virtual bool IsNull(int? x) } - public static int Main() + [Fact] + public static void TestEntryPoint() { Program p = new Program(); @@ -56,9 +58,5 @@ public static int Main() if (g_completed >= g_interations) break; } - - return 100; - } - } diff --git a/src/tests/GC/Regressions/dev10bugs/536168/536168.csproj b/src/tests/GC/Regressions/dev10bugs/536168/536168.csproj index 4b67e6b7639b63..fe96cdf6d9d87d 100644 --- a/src/tests/GC/Regressions/dev10bugs/536168/536168.csproj +++ b/src/tests/GC/Regressions/dev10bugs/536168/536168.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Regressions/v2.0-beta1/149926/149926.cs b/src/tests/GC/Regressions/v2.0-beta1/149926/149926.cs index 0b1422441ae569..5217b575e40fc8 100644 --- a/src/tests/GC/Regressions/v2.0-beta1/149926/149926.cs +++ b/src/tests/GC/Regressions/v2.0-beta1/149926/149926.cs @@ -2,6 +2,7 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; +using Xunit; public class ArrayOOM { @@ -44,7 +45,8 @@ public bool RunTest() public class ByteArrayOOM { - public static int Main() + [Fact] + public static int TestEntryPoint() { ArrayOOM byteTest = new ArrayOOM(); if (byteTest.RunTest()) diff --git a/src/tests/GC/Regressions/v2.0-beta1/149926/149926.csproj b/src/tests/GC/Regressions/v2.0-beta1/149926/149926.csproj index cb1c9d10f6952e..b5e2631710f17d 100644 --- a/src/tests/GC/Regressions/v2.0-beta1/149926/149926.csproj +++ b/src/tests/GC/Regressions/v2.0-beta1/149926/149926.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Regressions/v2.0-beta1/289745/289745.csproj b/src/tests/GC/Regressions/v2.0-beta1/289745/289745.csproj index 2d6db7201d9122..ef9c51458d13a6 100644 --- a/src/tests/GC/Regressions/v2.0-beta1/289745/289745.csproj +++ b/src/tests/GC/Regressions/v2.0-beta1/289745/289745.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Regressions/v2.0-beta2/426480/426480.cs b/src/tests/GC/Regressions/v2.0-beta2/426480/426480.cs index b35fe7ad52e912..9d1d5cefdb8d67 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/426480/426480.cs +++ b/src/tests/GC/Regressions/v2.0-beta2/426480/426480.cs @@ -5,6 +5,7 @@ using System; using System.Runtime.CompilerServices; +using Xunit; public class Bug426480 @@ -33,7 +34,8 @@ public static void bar() } [MethodImplAttribute(MethodImplOptions.NoInlining)] - public static int Main() + [Fact] + public static int TestEntryPoint() { try { diff --git a/src/tests/GC/Regressions/v2.0-beta2/426480/426480.csproj b/src/tests/GC/Regressions/v2.0-beta2/426480/426480.csproj index 2d6db7201d9122..072f8338cd1b5a 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/426480/426480.csproj +++ b/src/tests/GC/Regressions/v2.0-beta2/426480/426480.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Regressions/v2.0-beta2/445488/445488.cs b/src/tests/GC/Regressions/v2.0-beta2/445488/445488.cs index 76a05f2972b373..7ee66df4b3d7fd 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/445488/445488.cs +++ b/src/tests/GC/Regressions/v2.0-beta2/445488/445488.cs @@ -6,6 +6,7 @@ using System.Diagnostics; using System.Collections.Generic; using System.Runtime.InteropServices; +using Xunit; [ StructLayout( LayoutKind.Sequential, CharSet=CharSet.Unicode )] public class Node @@ -27,7 +28,8 @@ public class Test_445488 //public static PerformanceCounter PC; - public static int Main() + [Fact] + public static void TestEntryPoint() { List list = new List(); List glist = new List(); @@ -51,8 +53,6 @@ public static int Main() GC.KeepAlive(list); GC.KeepAlive(glist); - return 100; - } } diff --git a/src/tests/GC/Regressions/v2.0-beta2/445488/445488.csproj b/src/tests/GC/Regressions/v2.0-beta2/445488/445488.csproj index 3d81a5b43e7aea..111217b5f475e5 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/445488/445488.csproj +++ b/src/tests/GC/Regressions/v2.0-beta2/445488/445488.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Regressions/v2.0-beta2/460373/460373.cs b/src/tests/GC/Regressions/v2.0-beta2/460373/460373.cs index 4a58f5c3438674..cb4791a6ca2b1d 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/460373/460373.cs +++ b/src/tests/GC/Regressions/v2.0-beta2/460373/460373.cs @@ -9,6 +9,7 @@ using System.Diagnostics; using System.Collections.Generic; using System.Runtime.InteropServices; +using Xunit; namespace b424916 { @@ -48,7 +49,8 @@ public Node() public class Test { - public static int Main() + [Fact] + public static void TestEntryPoint() { Node head = new Node(); @@ -61,8 +63,6 @@ public static int Main() GC.KeepAlive(head); } - - return 100; } } } diff --git a/src/tests/GC/Regressions/v2.0-beta2/460373/460373.csproj b/src/tests/GC/Regressions/v2.0-beta2/460373/460373.csproj index 3d81a5b43e7aea..111217b5f475e5 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/460373/460373.csproj +++ b/src/tests/GC/Regressions/v2.0-beta2/460373/460373.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Regressions/v2.0-beta2/462651/462651.cs b/src/tests/GC/Regressions/v2.0-beta2/462651/462651.cs index 7e6300855aae3e..48de7a107ff38e 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/462651/462651.cs +++ b/src/tests/GC/Regressions/v2.0-beta2/462651/462651.cs @@ -6,8 +6,9 @@ using System.Text; using System.Runtime.InteropServices; +using Xunit; -class Mainy { +public class Mainy { [DllImport("kernel32")] public static extern void DebugBreak(); @@ -63,10 +64,9 @@ public static void AllocStart() } } -public static int Main() { - - - +[Fact] +public static void TestEntryPoint() +{ int arrayLen = 1024*5; Byte [][] cache = new Byte[arrayLen][]; @@ -91,9 +91,6 @@ public static int Main() { } Console.WriteLine("finished"); - return 100; } } - - diff --git a/src/tests/GC/Regressions/v2.0-beta2/462651/462651.csproj b/src/tests/GC/Regressions/v2.0-beta2/462651/462651.csproj index c0d2362badc414..eed28f321afcb0 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/462651/462651.csproj +++ b/src/tests/GC/Regressions/v2.0-beta2/462651/462651.csproj @@ -1,6 +1,7 @@ - Exe + + true true true 1 diff --git a/src/tests/GC/Regressions/v2.0-beta2/471729/471729.cs b/src/tests/GC/Regressions/v2.0-beta2/471729/471729.cs index 4656fd01b18c57..9f6dace30e4842 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/471729/471729.cs +++ b/src/tests/GC/Regressions/v2.0-beta2/471729/471729.cs @@ -2,8 +2,9 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; +using Xunit; -internal static class Repro +public static class Repro { private struct S { @@ -39,7 +40,8 @@ private static void Test(bool throwException) } } - private static int Main() + [Fact] + public static int TestEntryPoint() { try { diff --git a/src/tests/GC/Regressions/v2.0-beta2/471729/471729.csproj b/src/tests/GC/Regressions/v2.0-beta2/471729/471729.csproj index 1879cec3f6a1c2..bf49c3106f1fb7 100644 --- a/src/tests/GC/Regressions/v2.0-beta2/471729/471729.csproj +++ b/src/tests/GC/Regressions/v2.0-beta2/471729/471729.csproj @@ -1,6 +1,7 @@ - Exe + + true true true 1 diff --git a/src/tests/GC/Regressions/v2.0-rtm/494226/494226.cs b/src/tests/GC/Regressions/v2.0-rtm/494226/494226.cs index a4d6248444a092..66c1241dc5d79d 100644 --- a/src/tests/GC/Regressions/v2.0-rtm/494226/494226.cs +++ b/src/tests/GC/Regressions/v2.0-rtm/494226/494226.cs @@ -4,11 +4,13 @@ using System; using System.Collections.Generic; using System.Runtime.InteropServices; +using Xunit; public class Test_494226 { [System.Security.SecuritySafeCritical] - public static int Main() + [Fact] + public static void TestEntryPoint() { List list = new List(); List blist = new List(); @@ -34,7 +36,6 @@ public static int Main() } Console.WriteLine("Test passed"); - return 100; } } diff --git a/src/tests/GC/Regressions/v2.0-rtm/494226/494226.csproj b/src/tests/GC/Regressions/v2.0-rtm/494226/494226.csproj index 01ae67cf7e10b9..e87873869dbba4 100644 --- a/src/tests/GC/Regressions/v2.0-rtm/494226/494226.csproj +++ b/src/tests/GC/Regressions/v2.0-rtm/494226/494226.csproj @@ -1,6 +1,7 @@ - Exe + + true true true true diff --git a/src/tests/GC/Regressions/v2.0-rtm/544701/544701.cs b/src/tests/GC/Regressions/v2.0-rtm/544701/544701.cs index ba08d57c50065e..5bedadb95d300c 100644 --- a/src/tests/GC/Regressions/v2.0-rtm/544701/544701.cs +++ b/src/tests/GC/Regressions/v2.0-rtm/544701/544701.cs @@ -2,14 +2,16 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; -internal class AllocBug +using Xunit; +public class AllocBug { public int ret = 0; public AllocBug() { } - private static int Main() + [Fact] + public static int TestEntryPoint() { AllocBug ab = new AllocBug(); diff --git a/src/tests/GC/Regressions/v2.0-rtm/544701/544701.csproj b/src/tests/GC/Regressions/v2.0-rtm/544701/544701.csproj index 1879cec3f6a1c2..bf49c3106f1fb7 100644 --- a/src/tests/GC/Regressions/v2.0-rtm/544701/544701.csproj +++ b/src/tests/GC/Regressions/v2.0-rtm/544701/544701.csproj @@ -1,6 +1,7 @@ - Exe + + true true true 1 diff --git a/src/tests/GC/Regressions/v3.0/25252/25252.cs b/src/tests/GC/Regressions/v3.0/25252/25252.cs index 847e306c9be20f..10160dc46edecd 100644 --- a/src/tests/GC/Regressions/v3.0/25252/25252.cs +++ b/src/tests/GC/Regressions/v3.0/25252/25252.cs @@ -2,17 +2,18 @@ // The .NET Foundation licenses this file to you under the MIT license. using System; +using Xunit; -class Program +public class Program { - static int Main() + [Fact] + public static void TestEntryPoint() { var matrix = new double[128 * 128]; GC.Collect(GC.MaxGeneration); GC.KeepAlive(matrix); - return 100; } } diff --git a/src/tests/GC/Regressions/v3.0/25252/25252.csproj b/src/tests/GC/Regressions/v3.0/25252/25252.csproj index 831db8723c30d1..2495e486fa9bf4 100644 --- a/src/tests/GC/Regressions/v3.0/25252/25252.csproj +++ b/src/tests/GC/Regressions/v3.0/25252/25252.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/Affinity/affinitizer.csproj b/src/tests/GC/Scenarios/Affinity/affinitizer.csproj index 1a6eafaa1472d0..034a38731cb02b 100644 --- a/src/tests/GC/Scenarios/Affinity/affinitizer.csproj +++ b/src/tests/GC/Scenarios/Affinity/affinitizer.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true SharedLibrary 1 diff --git a/src/tests/GC/Scenarios/BaseFinal/basefinal.cs b/src/tests/GC/Scenarios/BaseFinal/basefinal.cs index 21d149145ccc68..a81e447df6d8ce 100644 --- a/src/tests/GC/Scenarios/BaseFinal/basefinal.cs +++ b/src/tests/GC/Scenarios/BaseFinal/basefinal.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; /*******************************************************************************/ /* Test: BaseFinal /* Purpose: 1. if finalize() is called before the objects are GCed. @@ -12,14 +13,15 @@ namespace DefaultNamespace { using System.Runtime.CompilerServices; using System.Collections.Generic; - internal class BaseFinal + public class BaseFinal { // disabling unused variable warning #pragma warning disable 0414 internal static Object StObj; #pragma warning restore 0414 - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); CreateObj temp = new CreateObj(); diff --git a/src/tests/GC/Scenarios/BaseFinal/basefinal.csproj b/src/tests/GC/Scenarios/BaseFinal/basefinal.csproj index aefe9ce891e6b4..349048a2c575dc 100644 --- a/src/tests/GC/Scenarios/BaseFinal/basefinal.csproj +++ b/src/tests/GC/Scenarios/BaseFinal/basefinal.csproj @@ -1,6 +1,7 @@ - Exe + + true true true 1 diff --git a/src/tests/GC/Scenarios/BinTree/thdtree.csproj b/src/tests/GC/Scenarios/BinTree/thdtree.csproj index e7fbf5820dc6ca..e9dc5c2c82d8e9 100644 --- a/src/tests/GC/Scenarios/BinTree/thdtree.csproj +++ b/src/tests/GC/Scenarios/BinTree/thdtree.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Scenarios/BinTree/thdtreegrowingobj.csproj b/src/tests/GC/Scenarios/BinTree/thdtreegrowingobj.csproj index 3ef2fa7f34d10b..ac14e27e9d59dc 100644 --- a/src/tests/GC/Scenarios/BinTree/thdtreegrowingobj.csproj +++ b/src/tests/GC/Scenarios/BinTree/thdtreegrowingobj.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Scenarios/BinTree/thdtreelivingobj.csproj b/src/tests/GC/Scenarios/BinTree/thdtreelivingobj.csproj index 178a795b4797ef..ce85fd11789573 100644 --- a/src/tests/GC/Scenarios/BinTree/thdtreelivingobj.csproj +++ b/src/tests/GC/Scenarios/BinTree/thdtreelivingobj.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Scenarios/Boxing/arrcpy.cs b/src/tests/GC/Scenarios/Boxing/arrcpy.cs index f4f6eee333fc92..2976120163e47f 100644 --- a/src/tests/GC/Scenarios/Boxing/arrcpy.cs +++ b/src/tests/GC/Scenarios/Boxing/arrcpy.cs @@ -1,12 +1,14 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; namespace DefaultNamespace { using System; - internal class ArrCpy + public class ArrCpy { - public static int Main() + [Fact] + public static void TestEntryPoint() { int iSize = 100; int iRep = 10; @@ -27,8 +29,6 @@ public static int Main() } GC.Collect(); } - return 100; - } diff --git a/src/tests/GC/Scenarios/Boxing/arrcpy.csproj b/src/tests/GC/Scenarios/Boxing/arrcpy.csproj index 519dffdf16a198..a0982f0064a029 100644 --- a/src/tests/GC/Scenarios/Boxing/arrcpy.csproj +++ b/src/tests/GC/Scenarios/Boxing/arrcpy.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/Boxing/gcvariant.csproj b/src/tests/GC/Scenarios/Boxing/gcvariant.csproj index 16e5352703ecd2..56e51beb25837d 100644 --- a/src/tests/GC/Scenarios/Boxing/gcvariant.csproj +++ b/src/tests/GC/Scenarios/Boxing/gcvariant.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/Boxing/gcvariant2.csproj b/src/tests/GC/Scenarios/Boxing/gcvariant2.csproj index 7b8b53158be8e6..e8027b47533a5e 100644 --- a/src/tests/GC/Scenarios/Boxing/gcvariant2.csproj +++ b/src/tests/GC/Scenarios/Boxing/gcvariant2.csproj @@ -1,7 +1,11 @@ - Exe + + true true + + + false diff --git a/src/tests/GC/Scenarios/Boxing/gcvariant3.csproj b/src/tests/GC/Scenarios/Boxing/gcvariant3.csproj index e5f6f79ae6e19a..51f850955f8c2b 100644 --- a/src/tests/GC/Scenarios/Boxing/gcvariant3.csproj +++ b/src/tests/GC/Scenarios/Boxing/gcvariant3.csproj @@ -1,7 +1,11 @@ - Exe + + true true + + + false diff --git a/src/tests/GC/Scenarios/Boxing/gcvariant4.csproj b/src/tests/GC/Scenarios/Boxing/gcvariant4.csproj index 85b32a172f5423..5b76924ebd0d26 100644 --- a/src/tests/GC/Scenarios/Boxing/gcvariant4.csproj +++ b/src/tests/GC/Scenarios/Boxing/gcvariant4.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/Boxing/simpvariant.cs b/src/tests/GC/Scenarios/Boxing/simpvariant.cs index 270240eaa4f0c2..8f01a5950976b0 100644 --- a/src/tests/GC/Scenarios/Boxing/simpvariant.cs +++ b/src/tests/GC/Scenarios/Boxing/simpvariant.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; // Basic Object Test that uses tests the following types: // int // long @@ -16,12 +17,12 @@ namespace DefaultNamespace { public class SimpObject { - public static int Main () + [Fact] + public static void TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); SimpObject sv = new SimpObject( ); sv.RunTest( ); - return 100; } public void RunTest() diff --git a/src/tests/GC/Scenarios/Boxing/simpvariant.csproj b/src/tests/GC/Scenarios/Boxing/simpvariant.csproj index a89d5fe4f54b5f..78c99a06ce0858 100644 --- a/src/tests/GC/Scenarios/Boxing/simpvariant.csproj +++ b/src/tests/GC/Scenarios/Boxing/simpvariant.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Scenarios/Boxing/vararystress.csproj b/src/tests/GC/Scenarios/Boxing/vararystress.csproj index d79fb785f56902..a9ee78d4ccd5a7 100644 --- a/src/tests/GC/Scenarios/Boxing/vararystress.csproj +++ b/src/tests/GC/Scenarios/Boxing/vararystress.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Scenarios/Boxing/variantint.csproj b/src/tests/GC/Scenarios/Boxing/variantint.csproj index a2f98fb34b371e..c0f2b89d082eb5 100644 --- a/src/tests/GC/Scenarios/Boxing/variantint.csproj +++ b/src/tests/GC/Scenarios/Boxing/variantint.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/Boxing/variantlinklist.csproj b/src/tests/GC/Scenarios/Boxing/variantlinklist.csproj index 2623bdda079760..d875426afdc6c7 100644 --- a/src/tests/GC/Scenarios/Boxing/variantlinklist.csproj +++ b/src/tests/GC/Scenarios/Boxing/variantlinklist.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/DoublinkList/DoubLink.csproj b/src/tests/GC/Scenarios/DoublinkList/DoubLinkList.csproj similarity index 100% rename from src/tests/GC/Scenarios/DoublinkList/DoubLink.csproj rename to src/tests/GC/Scenarios/DoublinkList/DoubLinkList.csproj diff --git a/src/tests/GC/Scenarios/DoublinkList/dlbigleak.csproj b/src/tests/GC/Scenarios/DoublinkList/dlbigleak.csproj index 37fd69fea21ee9..842e26529347f9 100644 --- a/src/tests/GC/Scenarios/DoublinkList/dlbigleak.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/dlbigleak.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd.csproj b/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd.csproj index c1096a4e5adf66..c91c42aa2b65c9 100644 --- a/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd.csproj @@ -1,12 +1,17 @@ - Exe + + true + + + false + true - + diff --git a/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd_v2.csproj b/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd_v2.csproj index be5c9940405eb0..3a56650ac2b3ab 100644 --- a/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd_v2.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/dlbigleakthd_v2.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 @@ -8,6 +13,6 @@ - + diff --git a/src/tests/GC/Scenarios/DoublinkList/dlcollect.csproj b/src/tests/GC/Scenarios/DoublinkList/dlcollect.csproj index 8a6b1504670472..331650e6d5f248 100644 --- a/src/tests/GC/Scenarios/DoublinkList/dlcollect.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/dlcollect.csproj @@ -1,12 +1,17 @@ - Exe + + true + + + false + true - + diff --git a/src/tests/GC/Scenarios/DoublinkList/dlstack.csproj b/src/tests/GC/Scenarios/DoublinkList/dlstack.csproj index 3165cdc5758b8d..35debf9785cd63 100644 --- a/src/tests/GC/Scenarios/DoublinkList/dlstack.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/dlstack.csproj @@ -1,12 +1,17 @@ - Exe + + true + + + false + true - + diff --git a/src/tests/GC/Scenarios/DoublinkList/doublinkgen.csproj b/src/tests/GC/Scenarios/DoublinkList/doublinkgen.csproj index dde50fdc032af0..b98afc7aac966c 100644 --- a/src/tests/GC/Scenarios/DoublinkList/doublinkgen.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/doublinkgen.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/DoublinkList/doublinknoleak.csproj b/src/tests/GC/Scenarios/DoublinkList/doublinknoleak.csproj index f4f56f637e06f1..2d8a4f9233db6f 100644 --- a/src/tests/GC/Scenarios/DoublinkList/doublinknoleak.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/doublinknoleak.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true 1 @@ -9,6 +14,6 @@ - + diff --git a/src/tests/GC/Scenarios/DoublinkList/doublinknoleak2.csproj b/src/tests/GC/Scenarios/DoublinkList/doublinknoleak2.csproj index dd4a61036fb0d3..5a2499d637d1fa 100644 --- a/src/tests/GC/Scenarios/DoublinkList/doublinknoleak2.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/doublinknoleak2.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/DoublinkList/doublinkstay.csproj b/src/tests/GC/Scenarios/DoublinkList/doublinkstay.csproj index 7ef9f15f59187e..5a0be3eee8f002 100644 --- a/src/tests/GC/Scenarios/DoublinkList/doublinkstay.csproj +++ b/src/tests/GC/Scenarios/DoublinkList/doublinkstay.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/Dynamo/dynamo.csproj b/src/tests/GC/Scenarios/Dynamo/dynamo.csproj index d9dd55f3e420b1..62228079ffdbe2 100644 --- a/src/tests/GC/Scenarios/Dynamo/dynamo.csproj +++ b/src/tests/GC/Scenarios/Dynamo/dynamo.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + 1000 40 191919 true diff --git a/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.cs b/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.cs index da0b8f2541ee52..b6baba5d54da06 100644 --- a/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.cs +++ b/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; //***************************************************************************/ //* Test: FinalNStruct //* Coverage: 1. check if GC can collect NStruct memeory (externally_allocated @@ -12,7 +13,7 @@ namespace NStruct { using System; using System.Runtime.CompilerServices; - internal class FinalNStruct + public class FinalNStruct { [MethodImplAttribute(MethodImplOptions.NoInlining)] @@ -38,7 +39,8 @@ public static bool RunTest() return ( FinalizeCount.icFinal == FinalizeCount.icCreat ); } - public static int Main(){ + [Fact] + public static int TestEntryPoint(){ int iObj = 100; Console.WriteLine("Test should return with ExitCode 100 ..."); diff --git a/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.csproj b/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.csproj index 2c2322d7fcc436..e693b30f1738ec 100644 --- a/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.csproj +++ b/src/tests/GC/Scenarios/FinalNStruct/finalnstruct.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/FinalNStruct/nstructresur.cs b/src/tests/GC/Scenarios/FinalNStruct/nstructresur.cs index dc931a0e2a6bd0..e6424a0c18b242 100644 --- a/src/tests/GC/Scenarios/FinalNStruct/nstructresur.cs +++ b/src/tests/GC/Scenarios/FinalNStruct/nstructresur.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; /*****************************************************************************/ /* Test: NStructResur /* Coverage: NStruct objects' finalize can be called and the objects can be @@ -12,7 +13,7 @@ namespace NStruct { using System; using System.Collections.Generic; - internal class NStructResur + public class NStructResur { internal static List alstrmap; @@ -46,7 +47,8 @@ public static bool RunTest() return ( FinalizeCount.icFinal == FinalizeCount.icCreat ); } - public static int Main() + [Fact] + public static int TestEntryPoint() { CreateObj(100); if (RunTest()) diff --git a/src/tests/GC/Scenarios/FinalNStruct/nstructresur.csproj b/src/tests/GC/Scenarios/FinalNStruct/nstructresur.csproj index 37fefd1335c145..3ee8a8062ab813 100644 --- a/src/tests/GC/Scenarios/FinalNStruct/nstructresur.csproj +++ b/src/tests/GC/Scenarios/FinalNStruct/nstructresur.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/FinalNStruct/nstructtun.csproj b/src/tests/GC/Scenarios/FinalNStruct/nstructtun.csproj index 29bb2869daf233..f9d1b2614ea575 100644 --- a/src/tests/GC/Scenarios/FinalNStruct/nstructtun.csproj +++ b/src/tests/GC/Scenarios/FinalNStruct/nstructtun.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.cs b/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.cs index b11ccaf40e91e5..dd95106525a8ce 100644 --- a/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.cs +++ b/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.cs @@ -4,10 +4,12 @@ using System; using System.Threading; +using Xunit; public class FinalizeTimeout { - public static int Main() + [Fact] + public static void TestEntryPoint() { Console.WriteLine("Main start"); @@ -35,7 +37,6 @@ public static int Main() // Create another finalizable object, and immediately return from Main to have finalization occur during shutdown finalizableObject = new BlockingFinalizerOnShutdown() { isLastObject = true }; - return 100; } private static void ThreadMain() diff --git a/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.csproj b/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.csproj index 588c3a08458c6e..767fa50d727322 100644 --- a/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.csproj +++ b/src/tests/GC/Scenarios/FinalizeTimeout/FinalizeTimeout.csproj @@ -1,6 +1,7 @@ - Exe + + true true true diff --git a/src/tests/GC/Scenarios/FragMan/fragman.cs b/src/tests/GC/Scenarios/FragMan/fragman.cs index abe167860f7151..97c4c8cddb37c9 100644 --- a/src/tests/GC/Scenarios/FragMan/fragman.cs +++ b/src/tests/GC/Scenarios/FragMan/fragman.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; /* FragMan * * This test creates an array of FragNodes, then reorganizes them into a tree. @@ -19,7 +20,8 @@ public class FragMan internal FragNode fnM = null; internal FragNode [] CvA_FNodes; - public static int Main () + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); FragMan test = new FragMan( ); diff --git a/src/tests/GC/Scenarios/FragMan/fragman.csproj b/src/tests/GC/Scenarios/FragMan/fragman.csproj index 84dbdb94c53fbe..e5f6b7796cc4c8 100644 --- a/src/tests/GC/Scenarios/FragMan/fragman.csproj +++ b/src/tests/GC/Scenarios/FragMan/fragman.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Scenarios/GC-scenarios1.csproj b/src/tests/GC/Scenarios/GC-scenarios1.csproj new file mode 100644 index 00000000000000..fc693852b08cf7 --- /dev/null +++ b/src/tests/GC/Scenarios/GC-scenarios1.csproj @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/tests/GC/Scenarios/GC-simulator.csproj b/src/tests/GC/Scenarios/GC-simulator.csproj new file mode 100644 index 00000000000000..568be7198407e6 --- /dev/null +++ b/src/tests/GC/Scenarios/GC-simulator.csproj @@ -0,0 +1,10 @@ + + + true + + + + + + + diff --git a/src/tests/GC/Scenarios/GCBase1/gc_base1.csproj b/src/tests/GC/Scenarios/GCBase1/gc_base1.csproj index 9e2b91c03828f1..1549fe4bb5934e 100644 --- a/src/tests/GC/Scenarios/GCBase1/gc_base1.csproj +++ b/src/tests/GC/Scenarios/GCBase1/gc_base1.csproj @@ -1,8 +1,13 @@ - Exe - true + + true + + + false 3 100 + + true 1 diff --git a/src/tests/GC/Scenarios/GCBase1/gc_base1_1.csproj b/src/tests/GC/Scenarios/GCBase1/gc_base1_1.csproj index 1b9565ac766636..6ca190962ae57a 100644 --- a/src/tests/GC/Scenarios/GCBase1/gc_base1_1.csproj +++ b/src/tests/GC/Scenarios/GCBase1/gc_base1_1.csproj @@ -1,8 +1,13 @@ - Exe - true + + true + + + false 8 100 + + true 1 diff --git a/src/tests/GC/Scenarios/GCBench/gcbench.cs b/src/tests/GC/Scenarios/GCBench/gcbench.cs index df9616181667cf..4abf09ae6a38d0 100644 --- a/src/tests/GC/Scenarios/GCBench/gcbench.cs +++ b/src/tests/GC/Scenarios/GCBench/gcbench.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; // This is adapted from a benchmark written by John Ellis and Pete Kovac // of Post Communications. // It was modified by Hans Boehm of Silicon Graphics. @@ -131,7 +132,8 @@ internal void TimeConstruction(int depth) } - public static int Main() + [Fact] + public static void TestEntryPoint() { Node longLivedTree; Node tempTree; @@ -163,7 +165,6 @@ public static int Main() } Console.WriteLine("Test Passed"); - return 100; } } diff --git a/src/tests/GC/Scenarios/GCBench/gcbench.csproj b/src/tests/GC/Scenarios/GCBench/gcbench.csproj index 18ae79ff6a20c7..c382e5e6322cdd 100644 --- a/src/tests/GC/Scenarios/GCBench/gcbench.csproj +++ b/src/tests/GC/Scenarios/GCBench/gcbench.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator.csproj index ce8384b20aa23b..24155ae46483ef 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true true diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_10.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_10.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_10.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_10.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_100.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_100.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_100.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_100.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_101.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_101.csproj index 16fa93acf5d541..297c6a21efa208 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_101.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_101.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_102.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_102.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_102.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_102.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_103.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_103.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_103.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_103.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_104.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_104.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_104.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_104.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_105.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_105.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_105.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_105.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_106.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_106.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_106.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_106.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_107.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_107.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_107.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_107.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_108.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_108.csproj index 63e5c005b2c664..7a77359c393304 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_108.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_108.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_109.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_109.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_109.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_109.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_11.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_11.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_11.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_11.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_110.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_110.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_110.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_110.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_111.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_111.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_111.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_111.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_112.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_112.csproj index 217f0b8caef96e..55ddeaa7b53453 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_112.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_112.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_113.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_113.csproj index 732ea33d94a48f..d40871748dd579 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_113.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_113.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_114.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_114.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_114.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_114.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_115.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_115.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_115.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_115.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_116.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_116.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_116.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_116.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_117.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_117.csproj index 63e5c005b2c664..7a77359c393304 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_117.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_117.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_118.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_118.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_118.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_118.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_119.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_119.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_119.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_119.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_12.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_12.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_12.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_12.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_120.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_120.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_120.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_120.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_121.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_121.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_121.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_121.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_122.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_122.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_122.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_122.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_123.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_123.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_123.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_123.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_124.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_124.csproj index 6c6876d6e1d209..2e6bd102476967 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_124.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_124.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_125.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_125.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_125.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_125.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_126.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_126.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_126.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_126.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_127.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_127.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_127.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_127.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_128.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_128.csproj index b0fb31cf83847d..cfec19f9d8b619 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_128.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_128.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_129.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_129.csproj index 0e60d37078f128..69940895968caf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_129.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_129.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_13.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_13.csproj index e6d15db6f7d4a7..beab90f4cb28f1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_13.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_13.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_130.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_130.csproj index 8a563193417a11..5e7d647858804f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_130.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_130.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_131.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_131.csproj index 6aa9fe10144325..af96cd82d1097b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_131.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_131.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_132.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_132.csproj index 4eb695ba035e00..0559b426cd31d9 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_132.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_132.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_133.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_133.csproj index 9c4022688f3906..4714a306e5ddaf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_133.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_133.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_134.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_134.csproj index fc3550fac2d025..ffde6680aa165f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_134.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_134.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_135.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_135.csproj index a2293322822d77..3c0ef118bdbba2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_135.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_135.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_136.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_136.csproj index 252636b9c0eaf5..b15bf5563ba1ef 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_136.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_136.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_137.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_137.csproj index 3c8b85eaec0a04..c9f637b340a757 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_137.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_137.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_138.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_138.csproj index fb5d36313ffcde..8215f3611798a7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_138.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_138.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_139.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_139.csproj index a60182e748cb85..073b0f31d58ee8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_139.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_139.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_14.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_14.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_14.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_14.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_140.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_140.csproj index a60182e748cb85..073b0f31d58ee8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_140.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_140.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_141.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_141.csproj index 4825707b5cf266..4b131b9787fb3e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_141.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_141.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_142.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_142.csproj index 4825707b5cf266..4b131b9787fb3e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_142.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_142.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_143.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_143.csproj index 8410246a7fe3ab..447f0abd9431b3 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_143.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_143.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_144.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_144.csproj index b66edd59fef3fb..4ee81567b6fb04 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_144.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_144.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_145.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_145.csproj index 32bf4b23959968..605a231278f18f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_145.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_145.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_146.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_146.csproj index 0cbd24fac60ef0..cf229cc1380dee 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_146.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_146.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_147.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_147.csproj index cae1c71f82df5b..dc2b82cda6f275 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_147.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_147.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_148.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_148.csproj index c9a11eb87d3a50..e9c6eac520a504 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_148.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_148.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_149.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_149.csproj index cdf3450e7b732d..e3228be725fe4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_149.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_149.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_15.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_15.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_15.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_15.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_150.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_150.csproj index cdf3450e7b732d..e3228be725fe4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_150.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_150.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_151.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_151.csproj index cdf3450e7b732d..e3228be725fe4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_151.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_151.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_152.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_152.csproj index c795507f887e00..7361574cc53128 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_152.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_152.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_153.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_153.csproj index 6c3a5acaa85759..9805dda1582b31 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_153.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_153.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_154.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_154.csproj index f99364ade24ad4..a3a835d49d1255 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_154.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_154.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_155.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_155.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_155.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_155.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_156.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_156.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_156.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_156.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_157.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_157.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_157.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_157.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_158.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_158.csproj index 5db0f4f777fc75..cd469b1615f38d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_158.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_158.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_159.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_159.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_159.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_159.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_16.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_16.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_16.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_16.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_160.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_160.csproj index 8b2eb367a01f7e..9bf935330d230c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_160.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_160.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_161.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_161.csproj index 951d78587ae997..f5f3b94a1d22b1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_161.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_161.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_162.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_162.csproj index df29f2cfbe41c1..f3cde86242f83b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_162.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_162.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_163.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_163.csproj index 429cbb7030ec4d..d7bf4575510e08 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_163.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_163.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_164.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_164.csproj index 035ff762fd8827..37482181655e33 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_164.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_164.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_165.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_165.csproj index 92add2d16819dd..456424c7936b0f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_165.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_165.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_166.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_166.csproj index ef361dcd35461c..d1b7c634ad58a5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_166.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_166.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_167.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_167.csproj index 88722ab0d1ef5e..c868140d4ee608 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_167.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_167.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_168.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_168.csproj index 5b286d7ee11af6..2108e47cace70a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_168.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_168.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_169.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_169.csproj index a8a1f62174b6a2..1cdad3f6b23f7e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_169.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_169.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_17.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_17.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_17.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_17.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_170.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_170.csproj index 5b286d7ee11af6..2108e47cace70a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_170.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_170.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_171.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_171.csproj index 170e4878583531..5ec6c2e64189c1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_171.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_171.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_172.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_172.csproj index 05c2975c2fd7bc..ff55a24f0fd4b5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_172.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_172.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_173.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_173.csproj index 4f3cdfaf364d2d..2b2a3a0e74678a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_173.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_173.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_174.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_174.csproj index b395c1362c26a4..ff26bc5ea0813b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_174.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_174.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_175.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_175.csproj index efe7bf094a677d..9a502b5299770d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_175.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_175.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_176.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_176.csproj index b87ebf586696ee..4cc56b69636318 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_176.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_176.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_177.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_177.csproj index 40eee68991f281..e40b14b7e4f15e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_177.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_177.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_178.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_178.csproj index 30224f9370fde2..922c9c02915ac2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_178.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_178.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_179.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_179.csproj index 9db01978222f26..33811c445ba9d7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_179.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_179.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 8517 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_18.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_18.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_18.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_18.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_180.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_180.csproj index a8a1f62174b6a2..1cdad3f6b23f7e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_180.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_180.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_181.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_181.csproj index 24cb074db00b79..62ae36337f1ae5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_181.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_181.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_182.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_182.csproj index e6a0598a30cb5e..d5a67c37bde940 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_182.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_182.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_183.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_183.csproj index bfb5768754610a..8026365d850e2f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_183.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_183.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_184.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_184.csproj index eecf2c278461e8..c33b46ee9df815 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_184.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_184.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_185.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_185.csproj index cb3d706ea75b3c..c00e52471d0553 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_185.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_185.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_186.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_186.csproj index 750469f2b02689..8b2d1a26074e3a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_186.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_186.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_187.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_187.csproj index 37172147c6fbc2..5ec6eb50a76853 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_187.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_187.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_188.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_188.csproj index 1afbe6a9536529..50118f802fd7e0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_188.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_188.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_189.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_189.csproj index c99bac9dbf45c2..6d933218c3b5ce 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_189.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_189.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_19.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_19.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_19.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_19.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_190.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_190.csproj index d22c9e1edecf49..4a4e68df5689bf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_190.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_190.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_191.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_191.csproj index 90a399a91d78a2..a04b69f7f59d09 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_191.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_191.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_192.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_192.csproj index 1f1e677c3b8f12..e4af18f8fdef30 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_192.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_192.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_193.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_193.csproj index 16c09eba39a9fc..e57aa86f788201 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_193.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_193.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_194.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_194.csproj index 8843efd52ab3f8..dfcb125070faf0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_194.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_194.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_195.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_195.csproj index b35d6318c9203d..0581bbff93da1d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_195.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_195.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 7 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_196.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_196.csproj index 252636b9c0eaf5..b15bf5563ba1ef 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_196.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_196.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_197.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_197.csproj index 6c6876d6e1d209..2e6bd102476967 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_197.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_197.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_198.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_198.csproj index 8410246a7fe3ab..447f0abd9431b3 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_198.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_198.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_199.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_199.csproj index 429cbb7030ec4d..d7bf4575510e08 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_199.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_199.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_2.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_2.csproj index e6d15db6f7d4a7..beab90f4cb28f1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_2.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_2.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_20.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_20.csproj index 63e5c005b2c664..7a77359c393304 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_20.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_20.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_200.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_200.csproj index dfdfc5ecafb674..44083e478e168f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_200.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_200.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_201.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_201.csproj index 4fc77a8eab7e50..da7d387915e2e0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_201.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_201.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_202.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_202.csproj index 905f7e4d09eddd..20d2fde7973f34 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_202.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_202.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_203.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_203.csproj index c795507f887e00..7361574cc53128 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_203.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_203.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_204.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_204.csproj index 05c2975c2fd7bc..ff55a24f0fd4b5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_204.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_204.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_205.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_205.csproj index 891b2bf3a6defa..ea4fedd08f6e49 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_205.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_205.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 30000 -sdc 6000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_206.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_206.csproj index 1219a4b9b3e7a8..58ed36fba781b3 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_206.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_206.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_207.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_207.csproj index 8a564b15f49324..865743aa840976 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_207.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_207.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_208.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_208.csproj index 217f0b8caef96e..55ddeaa7b53453 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_208.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_208.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_209.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_209.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_209.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_209.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_21.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_21.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_21.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_21.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_210.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_210.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_210.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_210.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_211.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_211.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_211.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_211.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_212.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_212.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_212.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_212.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_213.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_213.csproj index e61cb540e377f8..3577d00a1c6bc8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_213.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_213.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_214.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_214.csproj index e6d15db6f7d4a7..beab90f4cb28f1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_214.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_214.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_215.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_215.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_215.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_215.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_216.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_216.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_216.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_216.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_217.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_217.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_217.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_217.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_218.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_218.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_218.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_218.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_219.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_219.csproj index ed474b6538da72..f39795b586ccd1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_219.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_219.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_22.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_22.csproj index 715ac63a1140da..22861b36d0f016 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_22.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_22.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_220.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_220.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_220.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_220.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_221.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_221.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_221.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_221.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_222.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_222.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_222.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_222.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_223.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_223.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_223.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_223.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_224.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_224.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_224.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_224.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_225.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_225.csproj index e6d15db6f7d4a7..beab90f4cb28f1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_225.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_225.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_226.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_226.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_226.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_226.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_227.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_227.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_227.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_227.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_228.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_228.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_228.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_228.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_229.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_229.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_229.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_229.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_23.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_23.csproj index 20420ba553e512..47a6cc405ac31c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_23.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_23.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_230.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_230.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_230.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_230.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_231.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_231.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_231.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_231.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_232.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_232.csproj index 63e5c005b2c664..7a77359c393304 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_232.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_232.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_233.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_233.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_233.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_233.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_234.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_234.csproj index 715ac63a1140da..22861b36d0f016 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_234.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_234.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_235.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_235.csproj index 20420ba553e512..47a6cc405ac31c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_235.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_235.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_236.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_236.csproj index dfdfc5ecafb674..44083e478e168f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_236.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_236.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_237.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_237.csproj index 4bdf431302f21c..d0a3561e3daed8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_237.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_237.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_238.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_238.csproj index 17a2650cab9d31..547f4d5f510ded 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_238.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_238.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_239.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_239.csproj index c3f88d32f43489..b921e1a9c30a38 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_239.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_239.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_24.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_24.csproj index dfdfc5ecafb674..44083e478e168f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_24.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_24.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_240.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_240.csproj index 857c592d703908..c30b3e3835c3e4 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_240.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_240.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_241.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_241.csproj index 90199fcd95b9ed..271bc0fd7d547f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_241.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_241.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_242.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_242.csproj index e0efb180dd91ef..a1490596440b59 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_242.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_242.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_243.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_243.csproj index b491ac432cc744..61ff6dc831df45 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_243.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_243.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_244.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_244.csproj index 847303fe1adec0..640b3c8d2cd30a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_244.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_244.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_245.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_245.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_245.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_245.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_246.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_246.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_246.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_246.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_247.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_247.csproj index bc9bc6b04d5c3c..38bfadd66526e2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_247.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_247.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_248.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_248.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_248.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_248.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_249.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_249.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_249.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_249.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_25.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_25.csproj index 4bdf431302f21c..d0a3561e3daed8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_25.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_25.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_250.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_250.csproj index 43da1be80076b9..c40736e7f085d0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_250.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_250.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_251.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_251.csproj index 4765e324467f85..bc08ef7709337f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_251.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_251.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_252.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_252.csproj index 3859771e657ec4..8cb5ccff505aa8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_252.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_252.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_253.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_253.csproj index 1e0f8720f6be37..f16dc6c5dbbbb7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_253.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_253.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_254.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_254.csproj index e41f006ee39711..91b2289b9fc4b0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_254.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_254.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_255.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_255.csproj index 40ed93b6d015fb..1947bc1dde0048 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_255.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_255.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_256.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_256.csproj index 366196517554eb..edc9562bb6de3d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_256.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_256.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_257.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_257.csproj index f8fb5e0bcf9e94..8d99873c32d9e7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_257.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_257.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_258.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_258.csproj index bc9bc6b04d5c3c..38bfadd66526e2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_258.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_258.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_259.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_259.csproj index cb5f9e3b5bd36d..44a97f163885c4 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_259.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_259.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_26.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_26.csproj index 17a2650cab9d31..547f4d5f510ded 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_26.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_26.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_260.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_260.csproj index 1b886eab8a7f6b..4f1ac8356c1ed0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_260.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_260.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_261.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_261.csproj index 62c0bbdc3c4d96..b255abd4e0ca19 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_261.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_261.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_262.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_262.csproj index f3679eef199431..23687bb067f83a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_262.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_262.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_263.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_263.csproj index df54670cb75bde..db74b81cdcdc04 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_263.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_263.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_264.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_264.csproj index 5453bef1b4fbcd..6977019491c160 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_264.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_264.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_265.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_265.csproj index 5ad95896dacb83..6992277271f11f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_265.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_265.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_266.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_266.csproj index 9292295d322976..f9d8bc6a0cc798 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_266.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_266.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_267.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_267.csproj index f595b74b3d073e..e824b220b5153e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_267.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_267.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_268.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_268.csproj index 58cccbd98e8f11..765fe8fd54da46 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_268.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_268.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_269.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_269.csproj index ee8143e5c68dee..19dfdbc8cf04c8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_269.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_269.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_27.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_27.csproj index c3f88d32f43489..b921e1a9c30a38 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_27.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_27.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_270.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_270.csproj index d6ee9582cbb96d..910fd62549cf15 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_270.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_270.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_271.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_271.csproj index f9c66d50d0d237..a145e424d1a4bb 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_271.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_271.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_272.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_272.csproj index da0c3043b034ad..c6e3442dfc517c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_272.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_272.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_273.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_273.csproj index 7c7d87e31c744c..94df065267590f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_273.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_273.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_274.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_274.csproj index 4e3c3e6ca20667..9e4eee7c518790 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_274.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_274.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_275.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_275.csproj index 00765a2c3fa9b4..86e1b9db39f437 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_275.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_275.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_276.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_276.csproj index 27503553f41690..1b75e7807abbc6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_276.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_276.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_277.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_277.csproj index 3e74d56128281a..be44280b066edf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_277.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_277.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_278.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_278.csproj index b51e59c3422f8f..e972a5661fc76c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_278.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_278.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_279.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_279.csproj index a0356cfbe66e77..0f3f33192e29a7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_279.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_279.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_28.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_28.csproj index 857c592d703908..c30b3e3835c3e4 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_28.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_28.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_280.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_280.csproj index ee8143e5c68dee..19dfdbc8cf04c8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_280.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_280.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_281.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_281.csproj index fdb115c099fd1f..914103b50f7826 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_281.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_281.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_282.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_282.csproj index 66e202d9310491..d2c862153b2e90 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_282.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_282.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_283.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_283.csproj index 8914756f89f708..88e3cf354710df 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_283.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_283.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_284.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_284.csproj index 86a520ef95876a..134be967e2685c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_284.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_284.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_285.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_285.csproj index 47f344a6d87c91..5d7f1263f53656 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_285.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_285.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_286.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_286.csproj index 397ec6a9bbfbe8..2d31d1c842ade1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_286.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_286.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_287.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_287.csproj index c8654d87580a72..3cc077ca78b2e7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_287.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_287.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_288.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_288.csproj index a020a20d3de8b0..3dcf0cd73ad2aa 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_288.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_288.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_289.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_289.csproj index 80a049367c0141..898ebc94b4d428 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_289.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_289.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_29.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_29.csproj index 90199fcd95b9ed..271bc0fd7d547f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_29.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_29.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_290.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_290.csproj index a2a8e965b95490..3652317b100631 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_290.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_290.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_291.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_291.csproj index 46954d4ea86c51..16b30926fafd8f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_291.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_291.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_292.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_292.csproj index cb721ba407025c..92da24b0ff2e44 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_292.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_292.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_293.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_293.csproj index c0702165212343..6e5034dd498ecf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_293.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_293.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_294.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_294.csproj index fd51fea2f3b1a8..081c56311e17fc 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_294.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_294.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_295.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_295.csproj index 02d055ad96e2b0..ee7c3f2a0b000f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_295.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_295.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_296.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_296.csproj index 4dda389ae1b2ce..6a233b1a044c0c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_296.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_296.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_297.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_297.csproj index 82d42a9b6c1184..54ca197a456b4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_297.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_297.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_298.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_298.csproj index cb7af9521fa859..009d42ed78238b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_298.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_298.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_299.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_299.csproj index c3649cc9a71ee2..b832931e21f25e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_299.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_299.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_3.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_3.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_3.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_3.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_30.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_30.csproj index e0efb180dd91ef..a1490596440b59 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_30.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_30.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_300.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_300.csproj index c40f321bc56a41..1869354a570bb5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_300.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_300.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_301.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_301.csproj index 8eefdc73d09332..306312ba1e253d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_301.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_301.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_302.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_302.csproj index c29514605f3393..5adc79e12bb5fd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_302.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_302.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_303.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_303.csproj index 405cfff88b1ad7..8a918ea5845b12 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_303.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_303.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_304.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_304.csproj index e876cb99b51919..095fed079c4f1c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_304.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_304.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_305.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_305.csproj index f06f6071242dd5..b4cf0bdea7df31 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_305.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_305.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_306.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_306.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_306.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_306.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_307.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_307.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_307.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_307.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_308.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_308.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_308.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_308.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_309.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_309.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_309.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_309.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_31.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_31.csproj index b491ac432cc744..61ff6dc831df45 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_31.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_31.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_310.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_310.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_310.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_310.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_311.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_311.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_311.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_311.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_312.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_312.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_312.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_312.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_313.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_313.csproj index 16fa93acf5d541..297c6a21efa208 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_313.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_313.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_314.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_314.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_314.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_314.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_315.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_315.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_315.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_315.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_316.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_316.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_316.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_316.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_317.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_317.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_317.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_317.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_318.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_318.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_318.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_318.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_319.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_319.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_319.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_319.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_32.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_32.csproj index 847303fe1adec0..640b3c8d2cd30a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_32.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_32.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_320.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_320.csproj index 63e5c005b2c664..7a77359c393304 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_320.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_320.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_321.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_321.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_321.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_321.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_322.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_322.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_322.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_322.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_323.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_323.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_323.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_323.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_324.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_324.csproj index 217f0b8caef96e..55ddeaa7b53453 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_324.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_324.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_325.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_325.csproj index 732ea33d94a48f..d40871748dd579 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_325.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_325.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_326.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_326.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_326.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_326.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_327.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_327.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_327.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_327.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_328.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_328.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_328.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_328.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_329.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_329.csproj index 63e5c005b2c664..7a77359c393304 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_329.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_329.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_33.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_33.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_33.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_33.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_330.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_330.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_330.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_330.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_331.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_331.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_331.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_331.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_332.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_332.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_332.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_332.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_333.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_333.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_333.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_333.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_334.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_334.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_334.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_334.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_335.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_335.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_335.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_335.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_336.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_336.csproj index 6c6876d6e1d209..2e6bd102476967 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_336.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_336.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_337.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_337.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_337.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_337.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_338.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_338.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_338.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_338.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_339.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_339.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_339.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_339.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_34.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_34.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_34.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_34.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_340.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_340.csproj index b0fb31cf83847d..cfec19f9d8b619 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_340.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_340.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_341.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_341.csproj index 0e60d37078f128..69940895968caf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_341.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_341.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_342.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_342.csproj index 8a563193417a11..5e7d647858804f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_342.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_342.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_343.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_343.csproj index 6aa9fe10144325..af96cd82d1097b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_343.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_343.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_344.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_344.csproj index 4eb695ba035e00..0559b426cd31d9 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_344.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_344.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_345.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_345.csproj index 9c4022688f3906..4714a306e5ddaf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_345.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_345.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_346.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_346.csproj index fc3550fac2d025..ffde6680aa165f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_346.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_346.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_347.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_347.csproj index a2293322822d77..3c0ef118bdbba2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_347.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_347.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_348.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_348.csproj index 252636b9c0eaf5..b15bf5563ba1ef 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_348.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_348.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_349.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_349.csproj index 3c8b85eaec0a04..c9f637b340a757 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_349.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_349.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_35.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_35.csproj index bc9bc6b04d5c3c..38bfadd66526e2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_35.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_35.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_350.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_350.csproj index fb5d36313ffcde..8215f3611798a7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_350.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_350.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_351.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_351.csproj index a60182e748cb85..073b0f31d58ee8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_351.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_351.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_352.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_352.csproj index a60182e748cb85..073b0f31d58ee8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_352.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_352.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_353.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_353.csproj index 4825707b5cf266..4b131b9787fb3e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_353.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_353.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_354.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_354.csproj index 4825707b5cf266..4b131b9787fb3e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_354.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_354.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_355.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_355.csproj index 8410246a7fe3ab..447f0abd9431b3 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_355.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_355.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_356.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_356.csproj index b66edd59fef3fb..4ee81567b6fb04 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_356.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_356.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_357.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_357.csproj index 32bf4b23959968..605a231278f18f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_357.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_357.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_358.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_358.csproj index 0cbd24fac60ef0..cf229cc1380dee 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_358.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_358.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_359.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_359.csproj index cae1c71f82df5b..dc2b82cda6f275 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_359.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_359.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_36.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_36.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_36.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_36.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_360.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_360.csproj index c9a11eb87d3a50..e9c6eac520a504 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_360.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_360.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_361.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_361.csproj index cdf3450e7b732d..e3228be725fe4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_361.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_361.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_362.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_362.csproj index cdf3450e7b732d..e3228be725fe4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_362.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_362.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_363.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_363.csproj index cdf3450e7b732d..e3228be725fe4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_363.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_363.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_364.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_364.csproj index c795507f887e00..7361574cc53128 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_364.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_364.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_365.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_365.csproj index 6c3a5acaa85759..9805dda1582b31 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_365.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_365.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_366.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_366.csproj index f99364ade24ad4..a3a835d49d1255 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_366.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_366.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_367.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_367.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_367.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_367.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_368.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_368.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_368.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_368.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_369.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_369.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_369.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_369.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_37.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_37.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_37.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_37.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_370.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_370.csproj index 5db0f4f777fc75..cd469b1615f38d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_370.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_370.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_371.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_371.csproj index 1271794bcf95d8..ea40a03373b9d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_371.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_371.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_372.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_372.csproj index 8b2eb367a01f7e..9bf935330d230c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_372.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_372.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_373.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_373.csproj index 951d78587ae997..f5f3b94a1d22b1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_373.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_373.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_374.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_374.csproj index df29f2cfbe41c1..f3cde86242f83b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_374.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_374.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_375.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_375.csproj index 429cbb7030ec4d..d7bf4575510e08 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_375.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_375.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_376.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_376.csproj index 035ff762fd8827..37482181655e33 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_376.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_376.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_377.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_377.csproj index 92add2d16819dd..456424c7936b0f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_377.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_377.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_378.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_378.csproj index ef361dcd35461c..d1b7c634ad58a5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_378.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_378.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_379.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_379.csproj index 88722ab0d1ef5e..c868140d4ee608 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_379.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_379.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_38.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_38.csproj index 43da1be80076b9..c40736e7f085d0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_38.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_38.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_380.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_380.csproj index 5b286d7ee11af6..2108e47cace70a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_380.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_380.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_381.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_381.csproj index a8a1f62174b6a2..1cdad3f6b23f7e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_381.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_381.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_382.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_382.csproj index 5b286d7ee11af6..2108e47cace70a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_382.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_382.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_383.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_383.csproj index 170e4878583531..5ec6c2e64189c1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_383.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_383.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_384.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_384.csproj index 05c2975c2fd7bc..ff55a24f0fd4b5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_384.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_384.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_385.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_385.csproj index 4f3cdfaf364d2d..2b2a3a0e74678a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_385.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_385.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_386.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_386.csproj index b395c1362c26a4..ff26bc5ea0813b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_386.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_386.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_387.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_387.csproj index efe7bf094a677d..9a502b5299770d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_387.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_387.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_388.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_388.csproj index b87ebf586696ee..4cc56b69636318 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_388.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_388.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_389.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_389.csproj index 40eee68991f281..e40b14b7e4f15e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_389.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_389.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_39.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_39.csproj index 4765e324467f85..bc08ef7709337f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_39.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_39.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_390.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_390.csproj index 30224f9370fde2..922c9c02915ac2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_390.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_390.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_391.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_391.csproj index 9db01978222f26..33811c445ba9d7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_391.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_391.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 8517 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_392.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_392.csproj index a8a1f62174b6a2..1cdad3f6b23f7e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_392.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_392.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_393.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_393.csproj index 24cb074db00b79..62ae36337f1ae5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_393.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_393.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_394.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_394.csproj index e6a0598a30cb5e..d5a67c37bde940 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_394.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_394.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_395.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_395.csproj index bfb5768754610a..8026365d850e2f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_395.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_395.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_396.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_396.csproj index eecf2c278461e8..c33b46ee9df815 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_396.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_396.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_397.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_397.csproj index cb3d706ea75b3c..c00e52471d0553 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_397.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_397.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 2 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_398.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_398.csproj index 750469f2b02689..8b2d1a26074e3a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_398.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_398.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_399.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_399.csproj index 37172147c6fbc2..5ec6eb50a76853 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_399.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_399.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_4.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_4.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_4.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_4.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_40.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_40.csproj index 3859771e657ec4..8cb5ccff505aa8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_40.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_40.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_400.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_400.csproj index 1afbe6a9536529..50118f802fd7e0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_400.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_400.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_401.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_401.csproj index c99bac9dbf45c2..6d933218c3b5ce 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_401.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_401.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_402.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_402.csproj index d22c9e1edecf49..4a4e68df5689bf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_402.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_402.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 4 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_403.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_403.csproj index 90a399a91d78a2..a04b69f7f59d09 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_403.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_403.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_404.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_404.csproj index 1f1e677c3b8f12..e4af18f8fdef30 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_404.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_404.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_405.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_405.csproj index 16c09eba39a9fc..e57aa86f788201 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_405.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_405.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_406.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_406.csproj index 8843efd52ab3f8..dfcb125070faf0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_406.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_406.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 5 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_407.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_407.csproj index b35d6318c9203d..0581bbff93da1d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_407.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_407.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 7 -tp 0 -dz 17 -sdz 17 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_408.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_408.csproj index 252636b9c0eaf5..b15bf5563ba1ef 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_408.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_408.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_409.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_409.csproj index 6c6876d6e1d209..2e6bd102476967 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_409.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_409.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_41.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_41.csproj index 1e0f8720f6be37..f16dc6c5dbbbb7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_41.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_41.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_410.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_410.csproj index 8410246a7fe3ab..447f0abd9431b3 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_410.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_410.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_411.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_411.csproj index 429cbb7030ec4d..d7bf4575510e08 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_411.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_411.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_412.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_412.csproj index dfdfc5ecafb674..44083e478e168f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_412.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_412.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_413.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_413.csproj index 4fc77a8eab7e50..da7d387915e2e0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_413.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_413.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_414.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_414.csproj index 905f7e4d09eddd..20d2fde7973f34 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_414.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_414.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_415.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_415.csproj index c795507f887e00..7361574cc53128 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_415.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_415.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_416.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_416.csproj index 05c2975c2fd7bc..ff55a24f0fd4b5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_416.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_416.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_417.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_417.csproj index 891b2bf3a6defa..ea4fedd08f6e49 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_417.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_417.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 30000 -sdc 6000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_418.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_418.csproj index 1219a4b9b3e7a8..58ed36fba781b3 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_418.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_418.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 6000 -lt 2 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_419.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_419.csproj index 8a564b15f49324..865743aa840976 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_419.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_419.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 2 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_42.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_42.csproj index e41f006ee39711..91b2289b9fc4b0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_42.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_42.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_420.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_420.csproj index 217f0b8caef96e..55ddeaa7b53453 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_420.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_420.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 17 -dc 20000 -sdc 8000 -lt 4 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_421.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_421.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_421.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_421.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_422.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_422.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_422.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_422.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_423.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_423.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_423.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_423.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_424.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_424.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_424.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_424.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_425.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_425.csproj index d101ecc98cddbb..2028177fc35035 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_425.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_425.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 7 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.1 -dw 0.0 -f diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_426.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_426.csproj index 6407dd583b7933..ae02484c7e84d1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_426.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_426.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 8 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.2 -dw 0.0 -f diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_427.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_427.csproj index 774c3cae784f70..cdcd43dd118406 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_427.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_427.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 10 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.2 -dw 0.0 -f diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_428.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_428.csproj index 1fda87c5d1d4be..8e8b4e63729fde 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_428.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_428.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 10 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.3 -dw 0.0 -f diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_429.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_429.csproj index d1c6748423a08b..6368e1e2eefdcf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_429.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_429.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 8 -tp 0 -dz 17 -sdc 1024 -dc 10000 -sdz 17 -lt 2 -dp 0.3 -dw 0.1 -f diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_43.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_43.csproj index 40ed93b6d015fb..1947bc1dde0048 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_43.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_43.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_430.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_430.csproj index 80a049367c0141..898ebc94b4d428 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_430.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_430.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_431.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_431.csproj index a5acd74f5dd618..c564daa8f0b7e6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_431.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_431.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_432.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_432.csproj index cae1c71f82df5b..dc2b82cda6f275 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_432.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_432.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_44.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_44.csproj index 366196517554eb..edc9562bb6de3d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_44.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_44.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_45.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_45.csproj index f8fb5e0bcf9e94..8d99873c32d9e7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_45.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_45.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_46.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_46.csproj index bc9bc6b04d5c3c..38bfadd66526e2 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_46.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_46.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_47.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_47.csproj index cb5f9e3b5bd36d..44a97f163885c4 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_47.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_47.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_48.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_48.csproj index 1b886eab8a7f6b..4f1ac8356c1ed0 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_48.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_48.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_49.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_49.csproj index 62c0bbdc3c4d96..b255abd4e0ca19 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_49.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_49.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_5.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_5.csproj index ec129185c9b815..464170d0e8668b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_5.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_5.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_50.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_50.csproj index f3679eef199431..23687bb067f83a 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_50.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_50.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_51.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_51.csproj index df54670cb75bde..db74b81cdcdc04 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_51.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_51.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_52.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_52.csproj index 5453bef1b4fbcd..6977019491c160 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_52.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_52.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_53.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_53.csproj index 5ad95896dacb83..6992277271f11f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_53.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_53.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_54.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_54.csproj index 9292295d322976..f9d8bc6a0cc798 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_54.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_54.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_55.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_55.csproj index f595b74b3d073e..e824b220b5153e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_55.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_55.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_56.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_56.csproj index 58cccbd98e8f11..765fe8fd54da46 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_56.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_56.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_57.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_57.csproj index ee8143e5c68dee..19dfdbc8cf04c8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_57.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_57.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_58.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_58.csproj index d6ee9582cbb96d..910fd62549cf15 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_58.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_58.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_59.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_59.csproj index f9c66d50d0d237..a145e424d1a4bb 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_59.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_59.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_6.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_6.csproj index 8c178b85b41774..c2a65e64f4816d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_6.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_6.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_60.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_60.csproj index da0c3043b034ad..c6e3442dfc517c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_60.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_60.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_61.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_61.csproj index 7c7d87e31c744c..94df065267590f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_61.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_61.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_62.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_62.csproj index 4e3c3e6ca20667..9e4eee7c518790 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_62.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_62.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_63.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_63.csproj index 00765a2c3fa9b4..86e1b9db39f437 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_63.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_63.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_64.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_64.csproj index 27503553f41690..1b75e7807abbc6 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_64.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_64.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_65.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_65.csproj index 3e74d56128281a..be44280b066edf 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_65.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_65.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_66.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_66.csproj index b51e59c3422f8f..e972a5661fc76c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_66.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_66.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_67.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_67.csproj index a0356cfbe66e77..0f3f33192e29a7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_67.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_67.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_68.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_68.csproj index ee8143e5c68dee..19dfdbc8cf04c8 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_68.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_68.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_69.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_69.csproj index fdb115c099fd1f..914103b50f7826 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_69.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_69.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_7.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_7.csproj index ed474b6538da72..f39795b586ccd1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_7.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_7.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_70.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_70.csproj index 66e202d9310491..d2c862153b2e90 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_70.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_70.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_71.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_71.csproj index 8914756f89f708..88e3cf354710df 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_71.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_71.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_72.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_72.csproj index 86a520ef95876a..134be967e2685c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_72.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_72.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_73.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_73.csproj index 47f344a6d87c91..5d7f1263f53656 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_73.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_73.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_74.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_74.csproj index 397ec6a9bbfbe8..2d31d1c842ade1 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_74.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_74.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_75.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_75.csproj index c8654d87580a72..3cc077ca78b2e7 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_75.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_75.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.0 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_76.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_76.csproj index a020a20d3de8b0..3dcf0cd73ad2aa 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_76.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_76.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_77.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_77.csproj index 80a049367c0141..898ebc94b4d428 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_77.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_77.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_78.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_78.csproj index a2a8e965b95490..3652317b100631 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_78.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_78.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_79.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_79.csproj index 46954d4ea86c51..16b30926fafd8f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_79.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_79.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.4 -dw 0.8 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_8.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_8.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_8.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_8.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_80.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_80.csproj index cb721ba407025c..92da24b0ff2e44 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_80.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_80.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_82.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_82.csproj index fd51fea2f3b1a8..081c56311e17fc 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_82.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_82.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_83.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_83.csproj index 02d055ad96e2b0..ee7c3f2a0b000f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_83.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_83.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_84.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_84.csproj index 4dda389ae1b2ce..6a233b1a044c0c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_84.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_84.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.4 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_85.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_85.csproj index 82d42a9b6c1184..54ca197a456b4c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_85.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_85.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_86.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_86.csproj index cb7af9521fa859..009d42ed78238b 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_86.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_86.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_87.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_87.csproj index c3649cc9a71ee2..b832931e21f25e 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_87.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_87.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_88.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_88.csproj index c40f321bc56a41..1869354a570bb5 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_88.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_88.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_89.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_89.csproj index 8eefdc73d09332..306312ba1e253d 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_89.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_89.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_9.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_9.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_9.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_9.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_90.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_90.csproj index c29514605f3393..5adc79e12bb5fd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_90.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_90.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8517 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.8 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_91.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_91.csproj index 405cfff88b1ad7..8a918ea5845b12 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_91.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_91.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_92.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_92.csproj index e876cb99b51919..095fed079c4f1c 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_92.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_92.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_93.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_93.csproj index f06f6071242dd5..b4cf0bdea7df31 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_93.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_93.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 3 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -f -dp 0.8 -dw 0.4 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_94.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_94.csproj index 680c47a0580b0f..3bd7b6a1a24552 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_94.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_94.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_95.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_95.csproj index 353666ecce664e..05e2540de97698 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_95.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_95.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_96.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_96.csproj index ebee5c68bdb4b7..9b03e6d50f1efd 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_96.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_96.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 4 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_97.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_97.csproj index c8b5e796aadc49..f1979f50e1a64f 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_97.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_97.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 5 -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_98.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_98.csproj index 4df028c29f48a1..cba60be8c999ae 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_98.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_98.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 2 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_99.csproj b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_99.csproj index 86b9029fb32326..3a91c67fe42e23 100644 --- a/src/tests/GC/Scenarios/GCSimulator/GCSimulator_99.csproj +++ b/src/tests/GC/Scenarios/GCSimulator/GCSimulator_99.csproj @@ -1,6 +1,10 @@ - Exe + + + true + false + true true -t 1 -tp 0 -dz 17 -sdz 8500 -dc 10000 -sdc 5000 -lt 3 -f -dp 0.0 -dw 0.0 diff --git a/src/tests/GC/Scenarios/GCStress/gcstress.cs b/src/tests/GC/Scenarios/GCStress/gcstress.cs index 764d5cacf46c96..4b7daf7e2d2509 100644 --- a/src/tests/GC/Scenarios/GCStress/gcstress.cs +++ b/src/tests/GC/Scenarios/GCStress/gcstress.cs @@ -1,15 +1,17 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; namespace DefaultNamespace { using System; - internal class GCStress + public class GCStress { internal GCStress next; internal byte[] data; - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); GCStress obj= new GCStress(); diff --git a/src/tests/GC/Scenarios/GCStress/gcstress.csproj b/src/tests/GC/Scenarios/GCStress/gcstress.csproj index c6fea8e2d29c2e..6697217da02bf6 100644 --- a/src/tests/GC/Scenarios/GCStress/gcstress.csproj +++ b/src/tests/GC/Scenarios/GCStress/gcstress.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/LeakGen/leakgen.csproj b/src/tests/GC/Scenarios/LeakGen/leakgen.csproj index 02721aaf04d493..3c31d4252ad8e6 100644 --- a/src/tests/GC/Scenarios/LeakGen/leakgen.csproj +++ b/src/tests/GC/Scenarios/LeakGen/leakgen.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Scenarios/LeakGen/leakgenthrd.csproj b/src/tests/GC/Scenarios/LeakGen/leakgenthrd.csproj index 241636c77b6035..aaf0f97f29a20f 100644 --- a/src/tests/GC/Scenarios/LeakGen/leakgenthrd.csproj +++ b/src/tests/GC/Scenarios/LeakGen/leakgenthrd.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Scenarios/LeakWheel/leakwheel.csproj b/src/tests/GC/Scenarios/LeakWheel/leakwheel.csproj index ceda84368bf25f..4f3c980aa46c78 100644 --- a/src/tests/GC/Scenarios/LeakWheel/leakwheel.csproj +++ b/src/tests/GC/Scenarios/LeakWheel/leakwheel.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Scenarios/MinLeakGen/minleakgen.csproj b/src/tests/GC/Scenarios/MinLeakGen/minleakgen.csproj index eb71ed65212d70..169bd7f6c642a1 100644 --- a/src/tests/GC/Scenarios/MinLeakGen/minleakgen.csproj +++ b/src/tests/GC/Scenarios/MinLeakGen/minleakgen.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/NDPin/ndpin.cs b/src/tests/GC/Scenarios/NDPin/ndpin.cs index 2a92f08dbed29e..a9a9a0a7e01b8c 100644 --- a/src/tests/GC/Scenarios/NDPin/ndpin.cs +++ b/src/tests/GC/Scenarios/NDPin/ndpin.cs @@ -1,11 +1,12 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; namespace DefaultNamespace { using System; using System.Runtime.InteropServices; - internal class NDPin + public class NDPin { internal Object p; @@ -17,7 +18,8 @@ internal NDPin (Object p) this.p = p; } - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); diff --git a/src/tests/GC/Scenarios/NDPin/ndpin.csproj b/src/tests/GC/Scenarios/NDPin/ndpin.csproj index 6a930066cb18af..59237df59264eb 100644 --- a/src/tests/GC/Scenarios/NDPin/ndpin.csproj +++ b/src/tests/GC/Scenarios/NDPin/ndpin.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/NDPin/ndpinfinal.csproj b/src/tests/GC/Scenarios/NDPin/ndpinfinal.csproj index 96e7f4292d2139..06ecefaa8f5970 100644 --- a/src/tests/GC/Scenarios/NDPin/ndpinfinal.csproj +++ b/src/tests/GC/Scenarios/NDPin/ndpinfinal.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/RanCollect/rancollect.csproj b/src/tests/GC/Scenarios/RanCollect/rancollect.csproj index 2c22f74bf1d012..a4ace9fe9b3239 100644 --- a/src/tests/GC/Scenarios/RanCollect/rancollect.csproj +++ b/src/tests/GC/Scenarios/RanCollect/rancollect.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 7 40 4 77 diff --git a/src/tests/GC/Scenarios/ReflectObj/reflectobj.cs b/src/tests/GC/Scenarios/ReflectObj/reflectobj.cs index 39957455187890..52f5298800a125 100644 --- a/src/tests/GC/Scenarios/ReflectObj/reflectobj.cs +++ b/src/tests/GC/Scenarios/ReflectObj/reflectobj.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; /**************************************************************/ /* TEST: ReflectObj /* Purpose: test if GC can handle objects create by reflect @@ -20,7 +21,7 @@ namespace App { using System.Reflection; using System.Runtime.CompilerServices; - class ReflectObj + public class ReflectObj { Object obj; public static int icCreat = 0; @@ -49,7 +50,8 @@ public Object GetObj() icFinal++; } - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); CreateObj temp = new CreateObj(); diff --git a/src/tests/GC/Scenarios/ReflectObj/reflectobj.csproj b/src/tests/GC/Scenarios/ReflectObj/reflectobj.csproj index 15ec7bb1cd0346..5eaaceca565a51 100644 --- a/src/tests/GC/Scenarios/ReflectObj/reflectobj.csproj +++ b/src/tests/GC/Scenarios/ReflectObj/reflectobj.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/Resurrection/continue.cs b/src/tests/GC/Scenarios/Resurrection/continue.cs index 80a5f60a213f50..e6bdd90911fec6 100644 --- a/src/tests/GC/Scenarios/Resurrection/continue.cs +++ b/src/tests/GC/Scenarios/Resurrection/continue.cs @@ -1,12 +1,13 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; namespace DefaultNamespace { using System; using System.Runtime.CompilerServices; - internal class Continue + public class Continue { // disabling unused variable warning #pragma warning disable 0414 @@ -76,7 +77,8 @@ public bool RunTest() } - public static int Main() + [Fact] + public static int TestEntryPoint() { Console.WriteLine("Test should return with ExitCode 100 ..."); diff --git a/src/tests/GC/Scenarios/Resurrection/continue.csproj b/src/tests/GC/Scenarios/Resurrection/continue.csproj index c793eca147260b..c1baa5a7f54b47 100644 --- a/src/tests/GC/Scenarios/Resurrection/continue.csproj +++ b/src/tests/GC/Scenarios/Resurrection/continue.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/Rootmem/rootmem.cs b/src/tests/GC/Scenarios/Rootmem/rootmem.cs index 72156c32d85df6..c2f27d70b29229 100644 --- a/src/tests/GC/Scenarios/Rootmem/rootmem.cs +++ b/src/tests/GC/Scenarios/Rootmem/rootmem.cs @@ -1,6 +1,7 @@ // Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. +using Xunit; /*******************************************************************/ /* Test: RootMem /* Purpose: Test if Root class manage memory correctly against GC @@ -12,7 +13,7 @@ namespace DefaultNamespace { using System.Runtime.CompilerServices; using System.Runtime.InteropServices; - internal class RootMem + public class RootMem { internal long [] l; internal static GCHandle [] root; @@ -24,7 +25,8 @@ public static void AllocRoot() { } - public static int Main() + [Fact] + public static int TestEntryPoint() { int iSize = 1000; Object [] arVar = new Object[iSize]; diff --git a/src/tests/GC/Scenarios/Rootmem/rootmem.csproj b/src/tests/GC/Scenarios/Rootmem/rootmem.csproj index 55361155255c68..5e4faccd2aa705 100644 --- a/src/tests/GC/Scenarios/Rootmem/rootmem.csproj +++ b/src/tests/GC/Scenarios/Rootmem/rootmem.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Scenarios/Samples/gc.cs b/src/tests/GC/Scenarios/Samples/gc.cs index 03c53604a79fe1..b10a94f9084dcc 100644 --- a/src/tests/GC/Scenarios/Samples/gc.cs +++ b/src/tests/GC/Scenarios/Samples/gc.cs @@ -25,6 +25,7 @@ PARTICULAR PURPOSE. // Add the classes in the following namespaces to our namespace using System; using System.Threading; +using Xunit; /////////////////////////////////////////////////////////////////////////////// @@ -202,7 +203,7 @@ public void Dispose() { // This class represents the application itself -class Application { +public class Application { static private int indent = 0; static public void Display(String s) { @@ -497,7 +498,9 @@ private static void WeakRefDemo(Boolean trackResurrection) { } - public static int Main() { + [Fact] + public static void TestEntryPoint() + { // Environment.ExitCode = 1; Display("To fully understand this sample, you should step through the"); Display("code in the debugger while monitoring the output generated.\n"); @@ -522,8 +525,6 @@ public static int Main() { // This is the last line of code executed before the application terminates. Display(-1, "Demo stop: Finalize on shutdown (application is now terminating)", 0); - - return 100; } } diff --git a/src/tests/GC/Scenarios/Samples/gc.csproj b/src/tests/GC/Scenarios/Samples/gc.csproj index 2ad1a82a6f12e1..74bd66f640cece 100644 --- a/src/tests/GC/Scenarios/Samples/gc.csproj +++ b/src/tests/GC/Scenarios/Samples/gc.csproj @@ -1,6 +1,7 @@ - Exe + + true true 1 diff --git a/src/tests/GC/Scenarios/ServerModel/servermodel.csproj b/src/tests/GC/Scenarios/ServerModel/servermodel.csproj index eee4947a80a783..3462aa1bd47d1e 100644 --- a/src/tests/GC/Scenarios/ServerModel/servermodel.csproj +++ b/src/tests/GC/Scenarios/ServerModel/servermodel.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false /numrequests:100 + true true diff --git a/src/tests/GC/Scenarios/SingLinkList/singlinkgen.csproj b/src/tests/GC/Scenarios/SingLinkList/singlinkgen.csproj index 59c3e46672a003..4c33dfde19371a 100644 --- a/src/tests/GC/Scenarios/SingLinkList/singlinkgen.csproj +++ b/src/tests/GC/Scenarios/SingLinkList/singlinkgen.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/SingLinkList/singlinkstay.csproj b/src/tests/GC/Scenarios/SingLinkList/singlinkstay.csproj index 3c5be35a1c4799..e0902e0cfd069d 100644 --- a/src/tests/GC/Scenarios/SingLinkList/singlinkstay.csproj +++ b/src/tests/GC/Scenarios/SingLinkList/singlinkstay.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/StringCreator/stringcreator.csproj b/src/tests/GC/Scenarios/StringCreator/stringcreator.csproj index b1758434c69bbf..0fc5654b956a9d 100644 --- a/src/tests/GC/Scenarios/StringCreator/stringcreator.csproj +++ b/src/tests/GC/Scenarios/StringCreator/stringcreator.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/THDChaos/thdchaos.csproj b/src/tests/GC/Scenarios/THDChaos/thdchaos.csproj index 945acda48c233b..9ff7df0d54812f 100644 --- a/src/tests/GC/Scenarios/THDChaos/thdchaos.csproj +++ b/src/tests/GC/Scenarios/THDChaos/thdchaos.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true diff --git a/src/tests/GC/Scenarios/THDList/thdlist.csproj b/src/tests/GC/Scenarios/THDList/thdlist.csproj index 1dba9cb5645830..9f36fc129c36d6 100644 --- a/src/tests/GC/Scenarios/THDList/thdlist.csproj +++ b/src/tests/GC/Scenarios/THDList/thdlist.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true true diff --git a/src/tests/GC/Scenarios/WeakReference/weakreffinal.csproj b/src/tests/GC/Scenarios/WeakReference/weakreffinal.csproj index b9c836fe48a7d9..87268b17f8440c 100644 --- a/src/tests/GC/Scenarios/WeakReference/weakreffinal.csproj +++ b/src/tests/GC/Scenarios/WeakReference/weakreffinal.csproj @@ -1,6 +1,11 @@ - Exe + + true + + + false + true 1 diff --git a/src/tests/GC/Scenarios/muldimjagary/muldimjagary.cs b/src/tests/GC/Scenarios/muldimjagary/muldimjagary.cs index f6fa11af4a0d5d..01ece6bd59df9d 100644 --- a/src/tests/GC/Scenarios/muldimjagary/muldimjagary.cs +++ b/src/tests/GC/Scenarios/muldimjagary/muldimjagary.cs @@ -3,6 +3,7 @@ namespace DefaultNamespace { using System; +using Xunit; /*************************************************************/ /* test: MulDimJagAry.cs @@ -12,9 +13,10 @@ namespace DefaultNamespace { /*************************************************************/ - class MulDimJagAry + public class MulDimJagAry { - public static int Main() + [Fact] + public static void TestEntryPoint() { int iDim1 = 100; int iDim2 = 100; @@ -127,10 +129,6 @@ public static int Main() // Console.WriteLine( "HeapSize after GC: "+ GC.GetTotalMemory(false) ); //} } - - - return 100; - } public void SetThreeDimJagAry( Object [][][] oJag, int iDim1, int iDim2 ) diff --git a/src/tests/GC/Scenarios/muldimjagary/muldimjagary.csproj b/src/tests/GC/Scenarios/muldimjagary/muldimjagary.csproj index 3d81a5b43e7aea..111217b5f475e5 100644 --- a/src/tests/GC/Scenarios/muldimjagary/muldimjagary.csproj +++ b/src/tests/GC/Scenarios/muldimjagary/muldimjagary.csproj @@ -1,6 +1,7 @@ - Exe + + true true diff --git a/src/tests/GC/Stress/Framework/ReliabilityFramework.csproj b/src/tests/GC/Stress/Framework/ReliabilityFramework.csproj index cb578cfed6b75a..68bcbf53298c0f 100644 --- a/src/tests/GC/Stress/Framework/ReliabilityFramework.csproj +++ b/src/tests/GC/Stress/Framework/ReliabilityFramework.csproj @@ -1,7 +1,12 @@ - Exe + + true + + + false -unittest + true