Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / sanity / TestModuleCacheSanity.py
blob1d3a6b3158898c7f165160f8604a51008a4043a0
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):
13 NO_DEBUG_INFO_TESTCASE = True
15 def test(self):
16 self.expect(
17 "settings show symbols.clang-modules-cache-path",
18 substrs=["lldb-test-build.noindex", "module-cache-lldb"],