Skip to content

Commit

Permalink
Fix GitHub_93597 test build (dotnet#93833)
Browse files Browse the repository at this point in the history
  • Loading branch information
gbalykov authored Oct 24, 2023
1 parent 8812857 commit 10be4c0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@
using System;
using System.Collections.Generic;
using System.Runtime.CompilerServices;
using Xunit;

public class ReproGH93597 {
public static int Main() {
[Fact]
public static int TestEntryPoint() {
var expected = new int[] {5,4,3,2,1};

const int LowerBound = 5;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!-- Needed for mechanical merging of all remaining tests, this particular project may not actually need process isolation -->
<RequiresProcessIsolation>true</RequiresProcessIsolation>
</PropertyGroup>
<ItemGroup>
<Compile Include="GitHub_93597.cs" />
</ItemGroup>
Expand Down

0 comments on commit 10be4c0

Please sign in to comment.