[Lldb-commits] [lldb] 802e730 - [lldb] Fix TestExprDiagnostics test (#136269)
via lldb-commits
lldb-commits at lists.llvm.org
Fri Apr 18 00:33:24 PDT 2025
Author: Timm Baeder
Date: 2025-04-18T09:33:20+02:00
New Revision: 802e7309c0ab7e9966f8a98eede0231d146c6a97
URL: https://github.com/llvm/llvm-project/commit/802e7309c0ab7e9966f8a98eede0231d146c6a97
DIFF: https://github.com/llvm/llvm-project/commit/802e7309c0ab7e9966f8a98eede0231d146c6a97.diff
LOG: [lldb] Fix TestExprDiagnostics test (#136269)
Add missing source ranges to the diagnostic output.
Added:
Modified:
lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py
Removed:
################################################################################
diff --git a/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py b/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py
index b476a807c6dc0..0cc505aedc4be 100644
--- a/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py
+++ b/lldb/test/API/commands/expression/diagnostics/TestExprDiagnostics.py
@@ -33,7 +33,7 @@ def test_source_and_caret_printing(self):
self.assertIn(
"""
1 | unknown_identifier
- | ^
+ | ^~~~~~~~~~~~~~~~~~
""",
value.GetError().GetCString(),
)
@@ -45,7 +45,7 @@ def test_source_and_caret_printing(self):
self.assertIn(
"""
1 | 1 + unknown_identifier
- | ^
+ | ^~~~~~~~~~~~~~~~~~
""",
value.GetError().GetCString(),
)
@@ -57,7 +57,7 @@ def test_source_and_caret_printing(self):
self.assertIn(
"""
2 | foobar +=1;
- | ^
+ | ^~~~~~
""",
value.GetError().GetCString(),
)
More information about the lldb-commits
mailing list