diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py index 613b42f5c83..1bae7aaa476 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbtest.py +++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py @@ -1921,8 +1921,8 @@ class TestBase(Base): if self.child: assert(self.getDebugInfo() == 'default') mod_cache = os.path.join(self.getBuildDir(), "module-cache") - self.runCmd("settings set target.clang-modules-cache-path " - + mod_cache) + self.runCmd('settings set clang.modules-cache-path "%s"' + % mod_cache) if "LLDB_MAX_LAUNCH_COUNT" in os.environ: |