aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/functionalities
diff options
context:
space:
mode:
Diffstat (limited to 'lldb/test/API/functionalities')
-rw-r--r--lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py b/lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py
index 3747bb4f1e2f..2a91b455b3c2 100644
--- a/lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py
+++ b/lldb/test/API/functionalities/data-formatter/stringprinter/TestStringPrinter.py
@@ -51,15 +51,17 @@ class TestStringPrinter(TestBase):
# FIXME: make "b.data" and "c.data" work sanely
+ self.expect("frame variable ref", substrs=['(&ref = "Hello")'])
self.expect_var_path(
"ref",
- summary="<no value available>",
+ summary=None,
children=[ValueCheck(name="&ref", summary='"Hello"')],
)
# FIXME: should LLDB use "&&refref" for the name here?
+ self.expect("frame variable refref", substrs=['(&refref = "Hi")'])
self.expect_var_path(
"refref",
- summary="<no value available>",
+ summary=None,
children=[ValueCheck(name="&refref", summary='"Hi"')],
)