Skip to content
Open
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
4 changes: 2 additions & 2 deletions src/tests/Common/XUnitLogChecker/XUnitLogChecker.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<TargetFramework>$(NetCoreAppToolCurrent)</TargetFramework>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PublishTrimmed>true</PublishTrimmed>
<PublishTrimmed Condition="'$(SelfContained)' != 'false'">true</PublishTrimmed>
<PublishAot Condition="'$(UseNativeAotForComponents)' == 'true'">true</PublishAot>
<PublishSingleFile Condition="'$(UseNativeAotForComponents)' != 'true'">true</PublishSingleFile>
<PublishSingleFile Condition="'$(UseNativeAotForComponents)' != 'true' And '$(SelfContained)' != 'false'">true</PublishSingleFile>
<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
</PropertyGroup>

Expand Down
6 changes: 6 additions & 0 deletions src/tests/JIT/Directed/tailcall/mutual_recursion.fs
Original file line number Diff line number Diff line change
Expand Up @@ -562,3 +562,9 @@ type Driver() =
let main () =
let driver = Driver()
driver.Start()

[<EntryPoint>]
let entryPoint _argv =
let driver = Driver()
driver.Start()
100
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Library</OutputType>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
Expand Down
10 changes: 10 additions & 0 deletions src/tests/JIT/Regression/JitBlue/Runtime_87393/Runtime_87393.fs
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,13 @@ module Main =
let v = f.M 0 65000 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Assert.Equal(2112532500, v)

[<EntryPoint>]
let entryPoint _argv =
let f : Foo = Bar()
let v = f.M 0 65000 0 0 0 0 0 0 0 0 0 0 0 0 0 0
if v = 2112532500 then
printfn "PASS"
100
else
printfn "FAIL: Result was %A" v
-1
1 change: 1 addition & 0 deletions src/tests/async/capacity/capacity.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildProjectName).cs" />
<ProjectReference Include="$(TestLibraryProjectPath)" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<PropertyGroup>
<CLRTestKind>BuildOnly</CLRTestKind>
<IsTestProject>false</IsTestProject>
<OutputType>Library</OutputType>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading