Skip to content

Commit 42a65e8

Browse files
author
Davide Italiano
committed
[TestQuoting] Use the fully qualified path for remote platforms.
Patch by Jason Molenda, fixes a test failure on arm64 devices.
1 parent 9752a61 commit 42a65e8

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/commands/settings/quoting

1 file changed

+1
-1
lines changed

lldb/packages/Python/lldbsuite/test/commands/settings/quoting/TestQuoting.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ def do_test_args(self, args_in, args_out):
7474

7575
local_outfile = self.getBuildArtifact("output.txt")
7676
if lldb.remote_platform:
77-
remote_outfile = "output.txt" # Relative to platform's PWD
77+
remote_outfile = lldb.remote_platform.GetWorkingDirectory() + "/output.txt"
7878
else:
7979
remote_outfile = local_outfile
8080

0 commit comments

Comments
 (0)