diff --git a/impeller/golden_tests/vulkan_screenshotter.mm b/impeller/golden_tests/vulkan_screenshotter.mm index 0493909a53a18..c413da89990b3 100644 --- a/impeller/golden_tests/vulkan_screenshotter.mm +++ b/impeller/golden_tests/vulkan_screenshotter.mm @@ -74,8 +74,8 @@ CGContextPtr context( CGImagePtr image(CGBitmapContextCreateImage(context.get()), &CGImageRelease); FML_CHECK(image); - // TODO(tbd): Perform the flip at the blit stage to avoid this slow - // copy. + // TODO(https://github.com/flutter/flutter/issues/142641): Perform the flip at + // the blit stage to avoid this slow copy. if (texture->GetYCoordScale() == -1) { CGContextPtr flipped_context( CGBitmapContextCreate( diff --git a/testing/run_tests.py b/testing/run_tests.py index 6be8359ef6082..f35806455c93c 100755 --- a/testing/run_tests.py +++ b/testing/run_tests.py @@ -564,7 +564,8 @@ def make_test(name, flags=None, extra_env=None): executable_filter, shuffle_flags + [ '--enable_vulkan_validation', - '--gtest_filter=-*OpenGLES', # TODO(tbd) + # TODO(https://github.com/flutter/flutter/issues/142642): Remove this. + '--gtest_filter=-*OpenGLES', ], coverage=coverage, extra_env=extra_env,