summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorSergey Andreenko <seandree@microsoft.com>2019-01-10 11:53:32 -0800
committerGitHub <noreply@github.com>2019-01-10 11:53:32 -0800
commitc37ac0eaa8d26ecf06b86b825e713316897ff470 (patch)
treea684cc18b567fd4fc52cc376d471f158164d9230 /tests
parent04c0dc71dfd15432ba5f8be9ad8947146bc58e55 (diff)
downloadcoreclr-c37ac0eaa8d26ecf06b86b825e713316897ff470.tar.gz
coreclr-c37ac0eaa8d26ecf06b86b825e713316897ff470.tar.bz2
coreclr-c37ac0eaa8d26ecf06b86b825e713316897ff470.zip
Add an exclusion for hugeexpr1 on arm32 under `JitOptimizationSensitive` . (#21914)
Diffstat (limited to 'tests')
-rw-r--r--tests/src/JIT/jit64/opt/cse/hugeexpr1.csproj5
1 files changed, 3 insertions, 2 deletions
diff --git a/tests/src/JIT/jit64/opt/cse/hugeexpr1.csproj b/tests/src/JIT/jit64/opt/cse/hugeexpr1.csproj
index 37c35dc91e..0d9b48ec9d 100644
--- a/tests/src/JIT/jit64/opt/cse/hugeexpr1.csproj
+++ b/tests/src/JIT/jit64/opt/cse/hugeexpr1.csproj
@@ -24,8 +24,9 @@
<PropertyGroup>
<DebugType>Full</DebugType>
<Optimize>True</Optimize>
- <!-- This test is very resource heavy and doesn't play well with some JitStress modes, especially when memory is limited -->
- <JitOptimizationSensitive Condition="'$(Platform)' == 'x86'">true</JitOptimizationSensitive>
+ <!-- This test is very resource heavy and doesn't play well with some JitStress modes, especially when memory is limited (x86),
+ on arm the test fails to crossgen with stress mode because of an relocation offset size limit, see #16587 -->
+ <JitOptimizationSensitive Condition="'$(Platform)' == 'x86' Or '$(Platform)' == 'arm'">true</JitOptimizationSensitive>
</PropertyGroup>
<ItemGroup>
<Compile Include="hugeexpr1.cs" />