From a1d7a31556fc599657163cd8d4b1b195e387fd50 Mon Sep 17 00:00:00 2001 From: Chris Bracken Date: Mon, 25 Mar 2024 18:10:42 -0700 Subject: [PATCH] [macOS] Disable FlutterEngineTest.CanOverrideBackgroundColor This was re-enabled in https://github.com/flutter/flutter/issues/124677 after fixing leaks in https://github.com/flutter/engine/pull/50832. Since this test involves an NSWindow, there are separate fixes that should be landed to reduce flakes related to lack of NSWindow close calls in the tests. See related AppKit bug report filed at http://www.openradar.me/FB13291861. Issue: https://github.com/flutter/flutter/issues/145728 Related issue: https://github.com/flutter/flutter/issues/124677 --- .../platform/darwin/macos/framework/Source/FlutterEngineTest.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/platform/darwin/macos/framework/Source/FlutterEngineTest.mm b/shell/platform/darwin/macos/framework/Source/FlutterEngineTest.mm index 209903d8fa549..7b081318148d8 100644 --- a/shell/platform/darwin/macos/framework/Source/FlutterEngineTest.mm +++ b/shell/platform/darwin/macos/framework/Source/FlutterEngineTest.mm @@ -251,7 +251,7 @@ @implementation MockableFlutterEngine latch.Wait(); } -TEST_F(FlutterEngineTest, CanOverrideBackgroundColor) { +TEST_F(FlutterEngineTest, DISABLED_CanOverrideBackgroundColor) { FlutterEngine* engine = GetFlutterEngine(); // Latch to ensure the entire layer tree has been generated and presented.