From 0941abe84c42e32df00d40bee47200f68cf92126 Mon Sep 17 00:00:00 2001 From: Gary Qian Date: Thu, 23 Jan 2020 12:57:33 -0800 Subject: [PATCH] Disable flaky LineMetrics test (#49364) --- packages/flutter/test/painting/text_painter_test.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/packages/flutter/test/painting/text_painter_test.dart b/packages/flutter/test/painting/text_painter_test.dart index 670fdc5f4b..50f8e1bf3f 100644 --- a/packages/flutter/test/painting/text_painter_test.dart +++ b/packages/flutter/test/painting/text_painter_test.dart @@ -801,5 +801,10 @@ void main() { expect(lines[1].lineNumber, 1); expect(lines[2].lineNumber, 2); expect(lines[3].lineNumber, 3); - }, skip: !isLinux); + + // Disable this test, this is causing a large amount of flaking and + // does not have a clear cause. This may or may not be a dart compiler + // issue or similar. See https://github.com/flutter/flutter/issues/43763 + // for more info. + }, skip: true); }