Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Moseley <danmose@microsoft.com>2017-03-31 02:22:46 +0300
committerGitHub <noreply@github.com>2017-03-31 02:22:46 +0300
commitd5e919a42becc40e7b11df799795aead3398a9ef (patch)
tree53b81ea82d7fc1186e166964817982d15ce58c79 /Tools-Override
parentf93f22c093b96e808f983096b657396f39fb0c3a (diff)
Add switch to enable GCStress (#17707)
Diffstat (limited to 'Tools-Override')
-rw-r--r--Tools-Override/tests.targets3
1 files changed, 3 insertions, 0 deletions
diff --git a/Tools-Override/tests.targets b/Tools-Override/tests.targets
index cc210b35ba..9ca0022e4a 100644
--- a/Tools-Override/tests.targets
+++ b/Tools-Override/tests.targets
@@ -249,7 +249,10 @@
<ItemGroup Condition="'$(Performance)'!='true'">
<!-- On Windows, call prevents the test command from making execution end prematurely -->
+ <TestCommandLines Condition="'$(TargetOS)'=='Windows_NT' and '$(TestGCStressLevel)' != ''" Include="set COMPlus_GCStress=$(TestGCStressLevel)"/>
<TestCommandLines Condition="'$(TargetOS)'=='Windows_NT'" Include="call $(TestCommandLine)"/>
+
+ <TestCommandLines Condition="'$(TargetOS)'!='Windows_NT' and '$(TestGCStressLevel)' != ''" Include="export COMPlus_GCStress=$(TestGCStressLevel)"/>
<TestCommandLines Condition="'$(TargetOS)'!='Windows_NT'" Include="$(TestCommandLine)"/>
</ItemGroup>