[lldb] fix failing diagnostics test when Unicode is supported#172038
Merged
adrian-prantl merged 1 commit intollvm:mainfrom Dec 12, 2025
Merged
Conversation
Member
|
@llvm/pr-subscribers-lldb Author: Charles Zablit (charles-zablit) ChangesThis patch fixes a test failure introduced by #171832 due to a check which was not properly updated. Full diff: https://github.com/llvm/llvm-project/pull/172038.diff 1 Files Affected:
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
|
adrian-prantl
approved these changes
Dec 12, 2025
shyeyian
pushed a commit
to shyeyian/clang
that referenced
this pull request
Dec 15, 2025
…72038) This patch fixes a test failure introduced by llvm#171832 due to a check which was not properly updated.
charles-zablit
added a commit
to charles-zablit/llvm-project
that referenced
this pull request
Dec 16, 2025
…72038) This patch fixes a test failure introduced by llvm#171832 due to a check which was not properly updated. (cherry picked from commit 8515dda)
mahesh-attarde
pushed a commit
to mahesh-attarde/llvm-project
that referenced
this pull request
Dec 19, 2025
…72038) This patch fixes a test failure introduced by llvm#171832 due to a check which was not properly updated.
Priyanshu3820
pushed a commit
to Priyanshu3820/llvm-project
that referenced
this pull request
Dec 20, 2025
…72038) This patch fixes a test failure introduced by llvm#171832 due to a check which was not properly updated.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This patch fixes a test failure introduced by #171832 due to a check which was not properly updated.