From 85f5007ec51d673e4a36df4b3540c70f0c9abe75 Mon Sep 17 00:00:00 2001 From: Michael Buch Date: Thu, 8 Jan 2026 16:35:50 +0000 Subject: [PATCH] [cross-project-tests][formatters] Remove redundant CHECK statement See https://github.com/llvm/llvm-project/pull/173238#discussion_r2672090386 On some downstream CI this was flakey because LLDB's `location added to breakpoint` notification would appear after the commands. Simply remove checking for the command for now. --- .../debuginfo-tests/llvm-prettyprinters/lldb/arrayref.test | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cross-project-tests/debuginfo-tests/llvm-prettyprinters/lldb/arrayref.test b/cross-project-tests/debuginfo-tests/llvm-prettyprinters/lldb/arrayref.test index 0ee3b38ed3f3..ef66c01a9eaa 100644 --- a/cross-project-tests/debuginfo-tests/llvm-prettyprinters/lldb/arrayref.test +++ b/cross-project-tests/debuginfo-tests/llvm-prettyprinters/lldb/arrayref.test @@ -8,15 +8,13 @@ p ArrayRef p MutableArrayRef #--- checks -# CHECK: (lldb) p ArrayRef -# CHECK-NEXT: (llvm::ArrayRef) size=3 { +# CHECK: (llvm::ArrayRef) size=3 { # CHECK-NEXT: [0] = 1 # CHECK-NEXT: [1] = 2 # CHECK-NEXT: [2] = 3 # CHECK-NEXT: } -# CHECK: (lldb) p MutableArrayRef -# CHECK-NEXT: (llvm::MutableArrayRef) { +# CHECK: (llvm::MutableArrayRef) { # CHECK-NEXT: llvm::ArrayRef = size=3 { # CHECK-NEXT: [0] = 1 # CHECK-NEXT: [1] = 2