diff options
author | Chaoren Lin <chaorenl@google.com> | 2015-06-06 00:25:50 +0000 |
---|---|---|
committer | Chaoren Lin <chaorenl@google.com> | 2015-06-06 00:25:50 +0000 |
commit | 5d76b1b56e1578a7a2d8dbd61ab3f74e7fce2f47 (patch) | |
tree | 93838b91369477939810e6f254055494ac32f3a4 /lldb/test/python_api | |
parent | 05763f5752dd80b2d1442a3fb29fade94c50f889 (diff) | |
download | bcm5719-llvm-5d76b1b56e1578a7a2d8dbd61ab3f74e7fce2f47.tar.gz bcm5719-llvm-5d76b1b56e1578a7a2d8dbd61ab3f74e7fce2f47.zip |
Fix TestAttachDenied and TestChangeProcessGroup for remote Windows to Android.
Summary: Updated `append_to_remote_wd` to work for both remote and local.
Reviewers: clayborg, ovyalov
Reviewed By: ovyalov
Subscribers: tberghammer, lldb-commits
Differential Revision: http://reviews.llvm.org/D10288
llvm-svn: 239203
Diffstat (limited to 'lldb/test/python_api')
-rw-r--r-- | lldb/test/python_api/target/TestTargetAPI.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/python_api/target/TestTargetAPI.py b/lldb/test/python_api/target/TestTargetAPI.py index 0dcafcef622..22909adfbef 100644 --- a/lldb/test/python_api/target/TestTargetAPI.py +++ b/lldb/test/python_api/target/TestTargetAPI.py @@ -375,7 +375,7 @@ class TargetAPITestCase(TestBase): # The inferior should run to completion after "process.Continue()" call. local_path = "stdout.txt"; if lldb.remote_platform: - stdout_path = lldbutil.append_to_remote_wd("lldb-stdout-redirect.txt") + stdout_path = lldbutil.append_to_process_working_directory("lldb-stdout-redirect.txt") else: stdout_path = local_path error = lldb.SBError() |