From 97c370a181db9283ea20b48fcb80be367b000f6e Mon Sep 17 00:00:00 2001 From: Forgind Date: Mon, 22 May 2023 15:44:42 -0700 Subject: [PATCH] Disable flaky test --- src/Utilities.UnitTests/ToolTask_Tests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Utilities.UnitTests/ToolTask_Tests.cs b/src/Utilities.UnitTests/ToolTask_Tests.cs index 76d4dd912fb..7c7956d12ce 100644 --- a/src/Utilities.UnitTests/ToolTask_Tests.cs +++ b/src/Utilities.UnitTests/ToolTask_Tests.cs @@ -838,7 +838,7 @@ protected override string GenerateCommandLineCommands() /// predefined amount of time. The first execution may time out, but all following ones won't. It is expected /// that all following executions return success. /// - [Theory] + [Theory(Skip = "https://github.com/dotnet/msbuild/issues/8750")] [InlineData(1, 1, 1, -1)] // Normal case, no repeat. [InlineData(3, 1, 1, -1)] // Repeat without timeout. [InlineData(3, 10000, 1, 1000)] // Repeat with timeout.