2 from lldbsuite
.test
.decorators
import *
3 from lldbsuite
.test
.lldbtest
import *
4 from lldbsuite
.test
import lldbutil
7 class TestCase(TestBase
):
9 def test_conflicting_properties(self
):
10 """Tests receiving two properties with the same name from modules."""
12 lldbutil
.run_to_source_breakpoint(
13 self
, "// Set breakpoint here.", lldb
.SBFileSpec("main.m")
17 'settings set target.clang-module-search-paths "'
22 self
.runCmd("expr @import myModule")
23 self
.expect_expr("m.propConflict", result_value
="5")
24 self
.expect_expr("MyClass.propConflict", result_value
="6")