[Lldb-commits] [lldb] r249210 - Do not attempt to join the remote paths if none exist
Enrico Granata via lldb-commits
lldb-commits at lists.llvm.org
Fri Oct 2 15:53:33 PDT 2015
Author: enrico
Date: Fri Oct 2 17:53:32 2015
New Revision: 249210
URL: http://llvm.org/viewvc/llvm-project?rev=249210&view=rev
Log:
Do not attempt to join the remote paths if none exist
Modified:
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=249210&r1=249209&r2=249210&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Fri Oct 2 17:53:32 2015
@@ -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(),
More information about the lldb-commits
mailing list