diff options
| author | Johnny Chen <johnny.chen@apple.com> | 2011-05-27 23:42:45 +0000 |
|---|---|---|
| committer | Johnny Chen <johnny.chen@apple.com> | 2011-05-27 23:42:45 +0000 |
| commit | 61c79c0ba4bcc3a9678856b551c6549808fbe269 (patch) | |
| tree | 3c2806c1624c75d537256439f1eede445638cdd7 | |
| parent | f359cf2c846d1da2a14011369687c27c65416cd5 (diff) | |
| download | bcm5719-llvm-61c79c0ba4bcc3a9678856b551c6549808fbe269.tar.gz bcm5719-llvm-61c79c0ba4bcc3a9678856b551c6549808fbe269.zip | |
Fix some comments.
llvm-svn: 132232
| -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): |

