Skip to content

Commit 4b9da0d

Browse files
author
git apple-llvm automerger
committed
Merge commit 'f8865aa876a6' from llvm.org/main into next
2 parents abf4dd7 + f8865aa commit 4b9da0d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lldb/test/API/commands/process/launch/TestProcessLaunch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def test_target_launch_working_dir_prop(self):
220220
mywd = "my_working_dir"
221221
out_file_name = "my_working_dir_test.out"
222222

223-
my_working_dir_path = self.getBuildArtifact(mywd)
223+
my_working_dir_path = Path(self.getBuildArtifact(mywd)).resolve()
224224
lldbutil.mkdir_p(my_working_dir_path)
225225
out_file_path = os.path.join(my_working_dir_path, out_file_name)
226226
another_working_dir_path = Path(

lldb/test/API/source-manager/TestSourceManager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def setUp(self):
3535
# Call super's setUp().
3636
TestBase.setUp(self)
3737
# Find the line number to break inside main().
38-
self.file = self.getBuildArtifact("main-copy.c")
38+
self.file = os.path.realpath(self.getBuildArtifact("main-copy.c"))
3939
self.line = line_number("main.c", "// Set break point at this line.")
4040

4141
def modify_content(self):

0 commit comments

Comments
 (0)