Files
clang-p2996/lldb/test/API/commands/expression/xvalue/TestXValuePrinting.py
David Blaikie 40501f1b41 buildbot-based-debugging a Microsoft lldb test XPASS
Let's see if it's been fixed by my recent ABI fixes...
2022-10-04 21:38:33 +00:00

13 lines
413 B
Python

import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class ExprXValuePrintingTestCase(TestBase):
def test(self):
"""Printing an xvalue should work."""
self.build()
lldbutil.run_to_source_breakpoint(self, '// Break here', lldb.SBFileSpec("main.cpp"))
self.expect_expr("foo().data", result_value="1234")