From 45c1dc3a323512cc9b14882afa79064068ffefd9 Mon Sep 17 00:00:00 2001 From: Jeremy Koritzinsky Date: Mon, 11 Oct 2021 11:19:06 -0700 Subject: [PATCH] Re-enable running DllImportGenerator.Tests suite on Mono. (#60259) --- .../tests/DllImportGenerator.Tests/AssemblyInfo.cs | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/AssemblyInfo.cs diff --git a/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/AssemblyInfo.cs b/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/AssemblyInfo.cs deleted file mode 100644 index f95036d8de482..0000000000000 --- a/src/libraries/System.Runtime.InteropServices/tests/DllImportGenerator.Tests/AssemblyInfo.cs +++ /dev/null @@ -1,10 +0,0 @@ -// Licensed to the .NET Foundation under one or more agreements. -// The .NET Foundation licenses this file to you under the MIT license. - -using Xunit; - -// We build the libraries tests in CI once per target OS+Arch+Configuration, but we share it between runtime test runs. -// As a result, we need to exclude the Mono run here since we build the tests once for CoreCLR and Mono for desktop test runs. -// We should switch this to another mechanism in the future so we don't submit a work item of this assembly that skips every test -// for Mono-on-Desktop-Platforms test runs. -[assembly:ActiveIssue("https://github.com/dotnet/runtime/issues/59815", TestRuntimes.Mono)]