Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit c59f400

Browse files
authored
Merge pull request #12096 from pgavlin/Port128aabe
Port commit 128aabe from master: disable tail call stress in GH_11689 if ZapDisable is enabled.
2 parents 96f2027 + 36e9e6f commit c59f400

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tests/src/JIT/Regression/JitBlue/GitHub_11689/GitHub_11689.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,16 @@
3535
<Compile Include="GitHub_11689.cs" />
3636
</ItemGroup>
3737
<PropertyGroup>
38+
<!-- NOTE: tailcall stress should be reenabled under zapdisable when #11408 is fixed -->
3839
<CLRTestBatchPreCommands><![CDATA[
3940
$(CLRTestBatchPreCommands)
40-
set COMPlus_TailcallStress=1
41+
if "%COMPlus_ZapDisable%"=="" set COMPlus_TailcallStress=1
4142
]]></CLRTestBatchPreCommands>
4243
<BashCLRTestPreCommands><![CDATA[
4344
$(BashCLRTestPreCommands)
44-
export COMPlus_TailcallStress=1
45+
if [ -z $COMPlus_ZapDisable ]; then
46+
export COMPlus_TailcallStress=1
47+
fi
4548
]]></BashCLRTestPreCommands>
4649
</PropertyGroup>
4750
<ItemGroup>

0 commit comments

Comments
 (0)