Skip to content

Commit

Permalink
Disable tail call stress in GH_11689 if ZapDisable is enabled.
Browse files Browse the repository at this point in the history
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 a2abadf commit 128aabe
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 128aabe

Please sign in to comment.