Files
clang-p2996/lldb/test/API/lang/cpp/chained-calls/TestCppChainedCalls.py
Dave Lee 4cc8f2a017 [lldb][tests] Automatically call compute_mydir (NFC)
Eliminate boilerplate of having each test manually assign to `mydir` by calling
`compute_mydir` in lldbtest.py.

Differential Revision: https://reviews.llvm.org/D128077
2022-06-17 14:34:49 -07:00

24 lines
1.2 KiB
Python

import lldb
from lldbsuite.test.decorators import *
from lldbsuite.test.lldbtest import *
from lldbsuite.test import lldbutil
class TestCppChainedCalls(TestBase):
def test_with_run_command(self):
self.build()
lldbutil.run_to_source_breakpoint(self, "// break here", lldb.SBFileSpec("main.cpp"))
# Test chained calls
self.expect_expr("get(set(true))", result_type="bool", result_value="true")
self.expect_expr("get(set(false))", result_type="bool", result_value="false")
self.expect_expr("get(t & f)", result_type="bool", result_value="false")
self.expect_expr("get(f & t)", result_type="bool", result_value="false")
self.expect_expr("get(t & t)", result_type="bool", result_value="true")
self.expect_expr("get(f & f)", result_type="bool", result_value="false")
self.expect_expr("get(t & f)", result_type="bool", result_value="false")
self.expect_expr("get(f) && get(t)", result_type="bool", result_value="false")
self.expect_expr("get(f) && get(f)", result_type="bool", result_value="false")
self.expect_expr("get(t) && get(t)", result_type="bool", result_value="true")