summaryrefslogtreecommitdiffstats
path: root/lldb/packages/Python/lldbsuite/test/lldbtest.py
diff options
context:
space:
mode:
authorRaphael Isemann <teemperor@gmail.com>2019-03-06 20:51:28 +0000
committerRaphael Isemann <teemperor@gmail.com>2019-03-06 20:51:28 +0000
commita4a167fb759debcd0bdfe4f8d8508372908eedf5 (patch)
tree8a6f232a8d46e603f90b448d57ea204faa82564f /lldb/packages/Python/lldbsuite/test/lldbtest.py
parent2e754720e211e982597e1faab23eef3e3335ae8f (diff)
downloadbcm5719-llvm-a4a167fb759debcd0bdfe4f8d8508372908eedf5.tar.gz
bcm5719-llvm-a4a167fb759debcd0bdfe4f8d8508372908eedf5.zip
Remove redundant second os.path.join call [NFC]
llvm-svn: 355548
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbtest.py')
-rw-r--r--lldb/packages/Python/lldbsuite/test/lldbtest.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbtest.py b/lldb/packages/Python/lldbsuite/test/lldbtest.py
index 96924524bb7..6ad8f5ac31b 100644
--- a/lldb/packages/Python/lldbsuite/test/lldbtest.py
+++ b/lldb/packages/Python/lldbsuite/test/lldbtest.py
@@ -1865,8 +1865,7 @@ class TestBase(Base):
Base.setUp(self)
# Set the clang modules cache path used by LLDB.
- mod_cache = os.path.join(os.path.join(os.environ["LLDB_BUILD"],
- "module-cache-lldb"))
+ mod_cache = os.path.join(os.environ["LLDB_BUILD"], "module-cache-lldb")
self.runCmd('settings set symbols.clang-modules-cache-path "%s"'
% mod_cache)
OpenPOWER on IntegriCloud