File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
lldb/packages/Python/lldbsuite/test Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -722,17 +722,15 @@ def clean_working_directory():
722722
723723 def getSourceDir (self ):
724724 """Return the full path to the current test."""
725- return os .path .realpath ( os . path . join (configuration .test_src_root , self .mydir ) )
725+ return os .path .join (configuration .test_src_root , self .mydir )
726726
727727 def getBuildDirBasename (self ):
728728 return self .__class__ .__module__ + "." + self .testMethodName
729729
730730 def getBuildDir (self ):
731731 """Return the full path to the current test."""
732- return os .path .realpath (
733- os .path .join (
734- configuration .test_build_dir , self .mydir , self .getBuildDirBasename ()
735- )
732+ return os .path .join (
733+ configuration .test_build_dir , self .mydir , self .getBuildDirBasename ()
736734 )
737735
738736 def makeBuildDir (self ):
You can’t perform that action at this time.
0 commit comments