From f5b9d69ccd9993a4cebf95c62c844509fbf295e1 Mon Sep 17 00:00:00 2001 From: tmat Date: Tue, 10 Jun 2025 11:16:35 -0700 Subject: [PATCH 1/3] Skip failing dotnet-watch tests --- test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs | 2 +- .../dotnet-watch.Tests/HotReload/RuntimeProcessLauncherTests.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs b/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs index d96d52cf34ef..45c3c5e21102 100644 --- a/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs +++ b/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs @@ -67,7 +67,7 @@ public static void Print() await App.AssertOutputLineStartsWith("Changed!"); } - [Theory] + [Theory(Skip = "https://github.com/dotnet/sdk/issues/49307")] [CombinatorialData] public async Task AutoRestartOnRudeEdit(bool nonInteractive) { diff --git a/test/dotnet-watch.Tests/HotReload/RuntimeProcessLauncherTests.cs b/test/dotnet-watch.Tests/HotReload/RuntimeProcessLauncherTests.cs index 4273f2ca7493..8cd66123b723 100644 --- a/test/dotnet-watch.Tests/HotReload/RuntimeProcessLauncherTests.cs +++ b/test/dotnet-watch.Tests/HotReload/RuntimeProcessLauncherTests.cs @@ -540,7 +540,7 @@ public enum DirectoryKind Obj, } - [Theory] + [Theory(Skip = "https://github.com/dotnet/sdk/issues/49307")] [CombinatorialData] public async Task IgnoredChange(bool isExisting, bool isIncluded, DirectoryKind directoryKind) { From f5fe8f5c13af1dbf8a6cbdcdf297f50aac7951b1 Mon Sep 17 00:00:00 2001 From: tmat Date: Tue, 10 Jun 2025 12:16:45 -0700 Subject: [PATCH 2/3] Skip BlazorWasm_Restart --- test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs b/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs index 45c3c5e21102..2fef1c0e6dff 100644 --- a/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs +++ b/test/dotnet-watch.Tests/HotReload/ApplyDeltaTests.cs @@ -502,7 +502,7 @@ public async Task BlazorWasm_MSBuildWarning() await App.AssertWaitingForChanges(); } - [Fact] + [Fact(Skip = "https://github.com/dotnet/sdk/issues/49307")] public async Task BlazorWasm_Restart() { var testAsset = TestAssets.CopyTestAsset("WatchBlazorWasm") From da00b896ea319751b8d181ceab466500e9eaa225 Mon Sep 17 00:00:00 2001 From: tmat Date: Tue, 10 Jun 2025 12:51:22 -0700 Subject: [PATCH 3/3] Skip Restore_FilesTest --- test/dotnet-new.IntegrationTests/PostActionTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/dotnet-new.IntegrationTests/PostActionTests.cs b/test/dotnet-new.IntegrationTests/PostActionTests.cs index e62cd13bf1c6..5067e8bba7dd 100644 --- a/test/dotnet-new.IntegrationTests/PostActionTests.cs +++ b/test/dotnet-new.IntegrationTests/PostActionTests.cs @@ -255,7 +255,7 @@ public void Restore_SourceRenameTwoProjectsTest(string templatePartLocation, str [InlineData("PostActions/RestoreNuGet/Files_MatchSpecifiedFiles", "TestAssets.PostActions.RestoreNuGet.Files_MatchSpecifiedFiles", "Tool.Library/Tool.Library.csproj;Tool.Test/Tool.Test.csproj", "Tool/Tool.csproj")] [InlineData("PostActions/RestoreNuGet/Files_MismatchSpecifiedFiles", "TestAssets.PostActions.RestoreNuGet.Files_MismatchSpecifiedFiles", "Tool.Library/Tool.Library.csproj;Tool/Tool.csproj", "Tool.Test/Tool.Test.csproj")] [InlineData("PostActions/RestoreNuGet/Files_PatternWithFileName", "TestAssets.PostActions.RestoreNuGet.Files_PatternWithFileName", "Tool.Library/Tool.Library.csproj;Tool/Tool.csproj", "Tool.Test/Tool.Test.csproj")] - [InlineData("PostActions/RestoreNuGet/Files_PatternWithWildcard", "TestAssets.PostActions.RestoreNuGet.Files_PatternWithWildcard", "Tool.Library/Tool.Library.csproj;Tool.Test/Tool.Test.csproj", "Tool/Tool.csproj")] + [InlineData("PostActions/RestoreNuGet/Files_PatternWithWildcard", "TestAssets.PostActions.RestoreNuGet.Files_PatternWithWildcard", "Tool.Library/Tool.Library.csproj;Tool.Test/Tool.Test.csproj", "Tool/Tool.csproj", Skip = "https://github.com/dotnet/sdk/issues/49318")] [InlineData("PostActions/RestoreNuGet/Files_PatternWithGlobstar", "TestAssets.PostActions.RestoreNuGet.Files_PatternWithGlobstar", "Tool.Library/Tool.Library.csproj", "Tool/Tool.csproj;Tool.Test/Tool.Test.csproj")] [InlineData("PostActions/RestoreNuGet/Files_SupportSemicolonDelimitedList", "TestAssets.PostActions.RestoreNuGet.Files_SupportSemicolonDelimitedList", "Tool.Library/Tool.Library.csproj;Tool/Tool.csproj", "Tool.Test/Tool.Test.csproj")] public void Restore_FilesTest(string templatePartLocation, string templateName, string expectedRestoredProjects, string unexpectedRestoredProjects)