diff options
| -rw-r--r-- | lldb/test/lldbtest.py | 6 | ||||
| -rw-r--r-- | lldb/test/plugins/darwin.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index aca7d93e1e7..5cdacff877c 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -925,18 +925,18 @@ class TestBase(unittest2.TestCase): # ==================================================== def getArchitecture(self): - """Returns the architecture in effect the test suite is now running with.""" + """Returns the architecture in effect the test suite is running with.""" module = __import__(sys.platform) return module.getArchitecture() def getCompiler(self): - """Returns the compiler in effect the test suite is now running with.""" + """Returns the compiler in effect the test suite is running with.""" module = __import__(sys.platform) return module.getCompiler() def getRunOptions(self): """Command line option for -A and -C to run this test again, called from - within dumpSessionInfo().""" + self.dumpSessionInfo().""" arch = self.getArchitecture() comp = self.getCompiler() if not arch and not comp: diff --git a/lldb/test/plugins/darwin.py b/lldb/test/plugins/darwin.py index 8d64cc01789..ba852803523 100644 --- a/lldb/test/plugins/darwin.py +++ b/lldb/test/plugins/darwin.py @@ -18,11 +18,11 @@ import lldbtest #print "Hello, darwin plugin!" def getArchitecture(): - """Returns the architecture in effect the test suite is now running with.""" + """Returns the architecture in effect the test suite is running with.""" return os.environ["ARCH"] if "ARCH" in os.environ else "" def getCompiler(): - """Returns the compiler in effect the test suite is now running with.""" + """Returns the compiler in effect the test suite is running with.""" return os.environ["CC"] if "CC" in os.environ else "" def getArchSpec(architecture): |

