summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/GitHub_10780
diff options
context:
space:
mode:
authorPat Gavlin <pgavlin@gmail.com>2017-05-16 11:20:37 -0700
committerGitHub <noreply@github.com>2017-05-16 11:20:37 -0700
commitf2913a39793be26a5bb598582c41790593a5e5f8 (patch)
treea2a25a22fe4375c00089b0431ef09a8c949f4f77 /tests/src/JIT/Regression/JitBlue/GitHub_10780
parentbad672907a73790f5301352ce5bdca688da7b78f (diff)
downloadcoreclr-f2913a39793be26a5bb598582c41790593a5e5f8.tar.gz
coreclr-f2913a39793be26a5bb598582c41790593a5e5f8.tar.bz2
coreclr-f2913a39793be26a5bb598582c41790593a5e5f8.zip
Disable tail call stress in GH_10780 if ZapDisable is enabled. (#11649)
* Disable tail call stress in GH_10780 if ZapDisable is enabled. Tail call stress does not mix well with ZapDisable due to the issues described in #11408. Fixes #11648. * Add a missing semicolon.
Diffstat (limited to 'tests/src/JIT/Regression/JitBlue/GitHub_10780')
-rw-r--r--tests/src/JIT/Regression/JitBlue/GitHub_10780/GitHub_10780.csproj7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/src/JIT/Regression/JitBlue/GitHub_10780/GitHub_10780.csproj b/tests/src/JIT/Regression/JitBlue/GitHub_10780/GitHub_10780.csproj
index ec7bcb3362..6223cb9edd 100644
--- a/tests/src/JIT/Regression/JitBlue/GitHub_10780/GitHub_10780.csproj
+++ b/tests/src/JIT/Regression/JitBlue/GitHub_10780/GitHub_10780.csproj
@@ -35,13 +35,16 @@
<Compile Include="GitHub_10780.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>