2 Test importing the 'std' C++ module and check if we can handle
3 prioritizing the conflicting functions from debug info and std
6 See also import-std-module/basic/TestImportStdModule.py for
7 the same test on a 'clean' code base without conflicts.
10 from lldbsuite.test.decorators import *
11 from lldbsuite.test.lldbtest import *
12 from lldbsuite.test import lldbutil
15 class TestImportStdModuleConflicts(TestBase):
17 mydir = TestBase.compute_mydir(__file__)
19 @add_test_categories(["libc++"])
20 @skipIf(compiler=no_match("clang"))
24 lldbutil.run_to_source_breakpoint(self,
25 "// Set break point at this line.", lldb.SBFileSpec("main.cpp"))
27 self.runCmd("settings set target.import-std-module true")
28 self.expect("expr std::abs(-42)", substrs=['(int) $0 = 42'])
29 self.expect("expr std::div(2, 1).quot", substrs=['(int) $1 = 2'])
30 self.expect("expr (std::size_t)33U", substrs=['(size_t) $2 = 33'])
31 self.expect("expr char char_a = 'b'; char char_b = 'a'; std::swap(char_a, char_b); char_a",
32 substrs=["(char) $3 = 'a'"])