Skip to content

Commit

Permalink
Port commit 128aabe from master: isable tail call stress in GH_11689 …
Browse files Browse the repository at this point in the history
…if ZapDisable is enabled.

Tail call stress does not mix well with ZapDisable due to the issues
described in #11408.
  • Loading branch information
pgavlin committed Jun 5, 2017
1 parent 96f2027 commit 36e9e6f
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,16 @@
<Compile Include="GitHub_11689.cs" />
</ItemGroup>
<PropertyGroup>
<!-- NOTE: tailcall stress should be reenabled under zapdisable when #11408 is fixed -->
<CLRTestBatchPreCommands><![CDATA[
$(CLRTestBatchPreCommands)
set COMPlus_TailcallStress=1
if "%COMPlus_ZapDisable%"=="" set COMPlus_TailcallStress=1
]]></CLRTestBatchPreCommands>
<BashCLRTestPreCommands><![CDATA[
$(BashCLRTestPreCommands)
export COMPlus_TailcallStress=1
if [ -z $COMPlus_ZapDisable ]; then
export COMPlus_TailcallStress=1
fi
]]></BashCLRTestPreCommands>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit 36e9e6f

Please sign in to comment.