diff options
author | Adrian Prantl <aprantl@apple.com> | 2018-03-10 01:11:25 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2018-03-10 01:11:25 +0000 |
commit | 3cd29bcfe245bfe260d7a59b5cd836209d79802a (patch) | |
tree | c79428ae19b321ca0b6fe0b4baad1d25a770c3e1 /lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py | |
parent | 56e5a2e13e3048fc2ff39029cde406d9f4eb55f3 (diff) | |
download | bcm5719-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/test/lang/objc/modules-cache/TestClangModulesCache.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lang/objc/modules-cache/TestClangModulesCache.py | 2 |
1 files changed, 1 insertions, 1 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( |