summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite
diff options
context:
space:
mode:
authorAdrian Prantl <aprantl@apple.com>2018-03-10 01:11:25 +0000
committerAdrian Prantl <aprantl@apple.com>2018-03-10 01:11:25 +0000
commit3cd29bcfe245bfe260d7a59b5cd836209d79802a (patch)
treec79428ae19b321ca0b6fe0b4baad1d25a770c3e1 /lldb/packages/Python/lldbsuite
parent56e5a2e13e3048fc2ff39029cde406d9f4eb55f3 (diff)
downloadbcm5719-llvm-3cd29bcfe245bfe260d7a59b5cd836209d79802a.tar.gz
bcm5719-llvm-3cd29bcfe245bfe260d7a59b5cd836209d79802a.zip
Rename clang.modules-cache-path to symbols.clang-modules-cache-path
I want to extend the properties on ModuleList to also contain other more general settings and renaming the settings category to symbols seems to be the least bad of choices. llvm-svn: 327193
Diffstat (limited to 'lldb/packages/Python/lldbsuite')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py2
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py b/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
index 3a5725ad79a..0cff6916e7f 100644
--- a/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
+++ b/lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py
@@ -32,7 +32,7 @@ class ObjCModulesTestCase(TestBase):
shutil.rmtree(mod_cache)
self.assertFalse(os.path.isdir(mod_cache),
"module cache should not exist")
- self.runCmd('settings set clang.modules-cache-path "%s"' % mod_cache)
+ self.runCmd('settings set symbols.clang-modules-cache-path "%s"' % mod_cache)
self.runCmd('settings set target.clang-module-search-paths "%s"'
% self.getSourceDir())
(target, process, thread, bkpt) = lldbutil.run_to_source_breakpoint(
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index 1bae7aaa476..925cddd38f1 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1921,7 +1921,7 @@ class TestBase(Base):
if self.child:
assert(self.getDebugInfo() == 'default')
mod_cache = os.path.join(self.getBuildDir(), "module-cache")
- self.runCmd('settings set clang.modules-cache-path "%s"'
+ self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
% mod_cache)
OpenPOWER on IntegriCloud