[Lldb-commits] [lldb] r132232 - in /lldb/trunk/test: lldbtest.py plugins/darwin.py
Johnny Chen
johnny.chen at apple.com
Fri May 27 16:42:46 PDT 2011
Author: johnny
Date: Fri May 27 18:42:45 2011
New Revision: 132232
URL: http://llvm.org/viewvc/llvm-project?rev=132232&view=rev
Log:
Fix some comments.
Modified:
lldb/trunk/test/lldbtest.py
lldb/trunk/test/plugins/darwin.py
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=132232&r1=132231&r2=132232&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Fri May 27 18:42:45 2011
@@ -925,18 +925,18 @@
# ====================================================
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:
Modified: lldb/trunk/test/plugins/darwin.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/plugins/darwin.py?rev=132232&r1=132231&r2=132232&view=diff
==============================================================================
--- lldb/trunk/test/plugins/darwin.py (original)
+++ lldb/trunk/test/plugins/darwin.py Fri May 27 18:42:45 2011
@@ -18,11 +18,11 @@
#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):
More information about the lldb-commits
mailing list