Skip to content

Commit 36c6e19

Browse files
committed
Revert "[lldb] Change test paths to resolve symlinks"
This reverts commit efde68c.
1 parent efde68c commit 36c6e19

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

lldb/packages/Python/lldbsuite/test/lldbtest.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff 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):

0 commit comments

Comments
 (0)