diff options
Diffstat (limited to 'lldb/test/lldbtest.py')
| -rw-r--r-- | lldb/test/lldbtest.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index bcd6c64cd99..a4958ee17f2 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -1686,7 +1686,10 @@ class TestBase(Base): if lldb.remote_platform: #remote_test_dir = os.path.join(lldb.remote_platform_working_dir, self.mydir) - remote_test_dir = os.path.join(lldb.remote_platform_working_dir, str(self.test_number), self.mydir) + remote_test_dir = os.path.join(lldb.remote_platform_working_dir, + self.getArchitecture(), + str(self.test_number), + self.mydir) error = lldb.remote_platform.MakeDirectory(remote_test_dir, 0700) if error.Success(): print "successfully made remote directory '%s'" % (remote_test_dir) |

