From ee31944bced952d8b150804d273d481afc039c6a Mon Sep 17 00:00:00 2001 From: rereview Date: Tue, 8 Sep 2026 17:47:01 -0400 Subject: [PATCH] [Fix, Test] (Pipe): spell the skip twin's line continuation as a real newline - the previous commit left a literal backslash-n and the pull build of the suite did not compile --- MobileGL/MG_Test/Pipe/TextureEmitTest.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MobileGL/MG_Test/Pipe/TextureEmitTest.cpp b/MobileGL/MG_Test/Pipe/TextureEmitTest.cpp index 00e2e4bf..bf81c021 100644 --- a/MobileGL/MG_Test/Pipe/TextureEmitTest.cpp +++ b/MobileGL/MG_Test/Pipe/TextureEmitTest.cpp @@ -211,7 +211,8 @@ TEST(TextureEmit, TheEmitterIsOneNeverDestroyedProcessSingleton) { X(TextureEmit, ALodWriteOnTheBuiltinSamplerRepublishesTheParams) \ X(TextureEmit, ATexturesBuiltinSamplerHoldsOneCacheReferenceAndSwapsItWithTheContent) \ X(TextureEmit, ARecycledTextureSlotDoesNotInheritItsPredecessorsBindMask) \ - X(TextureEmit, ALevelMarkedCleanIsCollectedAtTheNextDrain) \n X(TextureEmit, WithNoBackendConsumerTheFamilyGateIsFalseAndNothingReachesTheApplier) + X(TextureEmit, ALevelMarkedCleanIsCollectedAtTheNextDrain) \ + X(TextureEmit, WithNoBackendConsumerTheFamilyGateIsFalseAndNothingReachesTheApplier) #define MGL_DECLARE_PULL_SKIP(Suite, Name) \ TEST(Suite, Name) { GTEST_SKIP() << "compiled only under MOBILEGL_PIPE_PUSH"; }