File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff 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 ):
You can’t perform that action at this time.
0 commit comments