[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / expression / xvalue / TestXValuePrinting.py
blob70ed4a80927ed95431d832f87e7b11c548006747
1 import lldb
2 from lldbsuite.test.decorators import *
3 from lldbsuite.test.lldbtest import *
4 from lldbsuite.test import lldbutil
7 class ExprXValuePrintingTestCase(TestBase):
8 def test(self):
9 """Printing an xvalue should work."""
10 self.build()
11 lldbutil.run_to_source_breakpoint(
12 self, "// Break here", lldb.SBFileSpec("main.cpp")
14 self.expect_expr("foo().data", result_value="1234")