[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / lldb / packages / Python / lldbsuite / test / sanity / TestModuleCacheSanity.py
blob3d9f171cabaceef00c9badd03b0ed408d8395ddc
1 """
2 This is a sanity check that verifies that the module cache path is set
3 correctly and points inside the default test build directory.
4 """
7 import lldb
8 import lldbsuite.test.lldbutil as lldbutil
9 from lldbsuite.test.lldbtest import *
12 class ModuleCacheSanityTestCase(TestBase):
14 mydir = TestBase.compute_mydir(__file__)
16 NO_DEBUG_INFO_TESTCASE = True
18 def test(self):
19 self.expect(
20 'settings show symbols.clang-modules-cache-path',
21 substrs=['lldb-test-build.noindex', 'module-cache-lldb'])