brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.2 KiB · b3241aa Raw
36 lines · python
1"""2Test importing the 'std' C++ module and check if we can handle3prioritizing the conflicting functions from debug info and std4module.5 6See also import-std-module/basic/TestImportStdModule.py for7the same test on a 'clean' code base without conflicts.8"""9 10from lldbsuite.test.decorators import *11from lldbsuite.test.lldbtest import *12from lldbsuite.test import lldbutil13 14 15class TestImportStdModuleConflicts(TestBase):16    @add_test_categories(["libc++"])17    @skipIf(compiler=no_match("clang"))18    @skipIf(macos_version=["<", "15.0"])19    def test(self):20        self.build()21 22        lldbutil.run_to_source_breakpoint(23            self, "// Set break point at this line.", lldb.SBFileSpec("main.cpp")24        )25 26        self.runCmd("settings set target.import-std-module true")27        self.expect_expr("std::abs(-42)", result_type="int", result_value="42")28        self.expect_expr("std::div(2, 1).quot", result_type="int", result_value="2")29        self.expect_expr(30            "(std::size_t)33U", result_type="std::size_t", result_value="33"31        )32        self.expect(33            "expr char char_a = 'b'; char char_b = 'a'; std::swap(char_a, char_b); char_a",34            substrs=["(char) $3 = 'a'"],35        )36