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):
220
220
mywd = "my_working_dir"
221
221
out_file_name = "my_working_dir_test.out"
222
222
223
- my_working_dir_path = self .getBuildArtifact (mywd )
223
+ my_working_dir_path = Path ( self .getBuildArtifact (mywd )). resolve ( )
224
224
lldbutil .mkdir_p (my_working_dir_path )
225
225
out_file_path = os .path .join (my_working_dir_path , out_file_name )
226
226
another_working_dir_path = Path (
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ def setUp(self):
35
35
# Call super's setUp().
36
36
TestBase .setUp (self )
37
37
# 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" ) )
39
39
self .line = line_number ("main.c" , "// Set break point at this line." )
40
40
41
41
def modify_content (self ):
You can’t perform that action at this time.
0 commit comments