Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion src/tests/JIT/Directed/tailcall/mutual_recursion.fs
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,6 @@ type Driver() =
////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////

[<ActiveIssue("https://github.com/dotnet/runtime/issues/127437", typeof<PlatformDetection>, [| "IsBrowser" |])>]
[<SkipOnCoreClr("Unstable under JIT stress", RuntimeTestModes.AnyJitStress ||| RuntimeTestModes.AnyGCStress)>]
[<SkipOnMono("Not supported on Mono runtime")>]
[<ConditionalFact(typeof<Utilities>, [| "IsNotNativeAot" |])>]
Expand Down
2 changes: 2 additions & 0 deletions src/tests/JIT/Directed/tailcall/mutual_recursion.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<PropertyGroup>
<Optimize>True</Optimize>
<TargetFramework>$(NetCoreAppToolCurrent)</TargetFramework>
<!-- F# does not emit tail calls in Debug builds, leading to stack overflow. See https://github.com/dotnet/runtime/issues/127437 -->
<DisableProjectBuild Condition="'$(Configuration)' == 'Debug'">true</DisableProjectBuild>
</PropertyGroup>
<ItemGroup>
<Compile Include="mutual_recursion.fs" />
Expand Down
Loading