brintos

brintos / llvm-project-archived public Read only

0
0
Text · 499 B · 1d3a6b3 Raw
20 lines · python
1"""2This is a sanity check that verifies that the module cache path is set3correctly and points inside the default test build directory.4"""5 6 7import lldb8import lldbsuite.test.lldbutil as lldbutil9from lldbsuite.test.lldbtest import *10 11 12class ModuleCacheSanityTestCase(TestBase):13    NO_DEBUG_INFO_TESTCASE = True14 15    def test(self):16        self.expect(17            "settings show symbols.clang-modules-cache-path",18            substrs=["lldb-test-build.noindex", "module-cache-lldb"],19        )20