[Lldb-commits] [lldb] [lldb] fix failing diagnostics test when Unicode is supported (PR #172038)
Charles Zablit via lldb-commits
lldb-commits at lists.llvm.org
Fri Dec 12 08:17:31 PST 2025
https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/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.
>From d968478dd22e2f485cd1d3f1ae11edc523651fc0 Mon Sep 17 00:00:00 2001
From: Charles Zablit <c_zablit at apple.com>
Date: Fri, 12 Dec 2025 16:16:09 +0000
Subject: [PATCH] [lldb] fix failing diagnostics test when Unicode is supported
---
lldb/test/Shell/Commands/command-expr-diagnostics.test | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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
More information about the lldb-commits
mailing list