diff options
| author | Enrico Granata <egranata@apple.com> | 2015-10-02 22:53:32 +0000 |
|---|---|---|
| committer | Enrico Granata <egranata@apple.com> | 2015-10-02 22:53:32 +0000 |
| commit | bd0998a1beccf1d88443f87b6c2ed738675ec564 (patch) | |
| tree | b1a0d8f15eebd8d4edf19cffa72d2591fe1befdc | |
| parent | 25b9ced0ed6a342863b084b558f1a238f2f93283 (diff) | |
| download | bcm5719-llvm-bd0998a1beccf1d88443f87b6c2ed738675ec564.tar.gz bcm5719-llvm-bd0998a1beccf1d88443f87b6c2ed738675ec564.zip | |
Do not attempt to join the remote paths if none exist
llvm-svn: 249210
| -rw-r--r-- | lldb/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index b59d692785e..5463c573c55 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -2407,7 +2407,7 @@ class TestBase(Base): if lldb.pre_flight: lldb.pre_flight(self) - if lldb.remote_platform: + if lldb.remote_platform and lldb.remote_platform_working_dir: remote_test_dir = lldbutil.join_remote_paths( lldb.remote_platform_working_dir, self.getArchitecture(), |

