Make the assignment of TestBase.mydir more portable.

llvm-svn: 140640
This commit is contained in:
Johnny Chen 2011-09-27 21:49:34 +00:00
parent cb56faf091
commit 0f2ed0e5df
3 changed files with 3 additions and 3 deletions

View File

@ -9,7 +9,7 @@ from lldbtest import *
class FrameUtilsTestCase(TestBase):
mydir = "python_api/lldbutil/frame"
mydir = os.path.join("python_api", "lldbutil", "frame")
def setUp(self):
# Call super's setUp().

View File

@ -10,7 +10,7 @@ from lldbtest import *
class LLDBIteratorTestCase(TestBase):
mydir = "python_api/lldbutil/iter"
mydir = os.path.join("python_api", "lldbutil", "iter")
def setUp(self):
# Call super's setUp().

View File

@ -10,7 +10,7 @@ from lldbtest import *
class RegistersIteratorTestCase(TestBase):
mydir = "python_api/lldbutil/iter"
mydir = os.path.join("python_api", "lldbutil", "iter")
def setUp(self):
# Call super's setUp().