summaryrefslogtreecommitdiffstats
path: root/lldb/test/python_api
diff options
context:
space:
mode:
authorJohnny Chen <johnny.chen@apple.com>2011-09-27 21:49:34 +0000
committerJohnny Chen <johnny.chen@apple.com>2011-09-27 21:49:34 +0000
commit0f2ed0e5df6d7135d5579b574006730ce09a8e6e (patch)
tree65f014dbe0e8d9fe2a756dc150a96edb4d419609 /lldb/test/python_api
parentcb56faf091d92e766937c06aa1d704d78e8e34d0 (diff)
downloadbcm5719-llvm-0f2ed0e5df6d7135d5579b574006730ce09a8e6e.tar.gz
bcm5719-llvm-0f2ed0e5df6d7135d5579b574006730ce09a8e6e.zip
Make the assignment of TestBase.mydir more portable.
llvm-svn: 140640
Diffstat (limited to 'lldb/test/python_api')
-rw-r--r--lldb/test/python_api/lldbutil/frame/TestFrameUtils.py2
-rw-r--r--lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py2
-rw-r--r--lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py b/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py
index 068077b5494..04d398bc5fa 100644
--- a/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py
+++ b/lldb/test/python_api/lldbutil/frame/TestFrameUtils.py
@@ -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().
diff --git a/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py b/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py
index e0022a0aaac..47fe1659019 100644
--- a/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py
+++ b/lldb/test/python_api/lldbutil/iter/TestLLDBIterator.py
@@ -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().
diff --git a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py
index 069243b85e2..eb324806d03 100644
--- a/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py
+++ b/lldb/test/python_api/lldbutil/iter/TestRegistersIterator.py
@@ -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().
OpenPOWER on IntegriCloud