Author: Charles Zablit Date: 2025-12-12T09:30:23-08:00 New Revision: 8515ddaa2bf62b30b5b952265b3708ea4987c505
URL: https://github.com/llvm/llvm-project/commit/8515ddaa2bf62b30b5b952265b3708ea4987c505 DIFF: https://github.com/llvm/llvm-project/commit/8515ddaa2bf62b30b5b952265b3708ea4987c505.diff LOG: [lldb] fix failing diagnostics test when Unicode is supported (#172038) This patch fixes a test failure introduced by https://github.com/llvm/llvm-project/pull/171832 due to a check which was not properly updated. Added: Modified: lldb/test/Shell/Commands/command-expr-diagnostics.test Removed: ################################################################################ diff --git a/lldb/test/Shell/Commands/command-expr-diagnostics.test b/lldb/test/Shell/Commands/command-expr-diagnostics.test index 0cb3cd381f3e2..3695312ca1684 100644 --- a/lldb/test/Shell/Commands/command-expr-diagnostics.test +++ b/lldb/test/Shell/Commands/command-expr-diagnostics.test @@ -24,7 +24,7 @@ # RUN: "expression -- FOO(\"\")" 2>&1 | FileCheck %s --check-prefix=CHECK4 # (lldb) expression -- FOO("") # CHECK4:{{^ (\^|˄)}} -# CHECK4: {{^ note: in instantiation of function template}} +# CHECK4: {{^ (╰─ )?note: in instantiation of function template}} # CHECK4: error: <user expression # RUN: echo expression --\na\n+\nb _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
