[Lldb-commits] [lldb] r166627 - in /lldb/trunk/test: expression_command/call-function/TestCallStdStringFunction.py lldbtest.py
Enrico Granata
egranata at apple.com
Wed Oct 24 14:44:49 PDT 2012
Author: enrico
Date: Wed Oct 24 16:44:48 2012
New Revision: 166627
URL: http://llvm.org/viewvc/llvm-project?rev=166627&view=rev
Log:
Reverting unwanted changes to the test suite
Modified:
lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py
lldb/trunk/test/lldbtest.py
Modified: lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py?rev=166627&r1=166626&r2=166627&view=diff
==============================================================================
--- lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py (original)
+++ lldb/trunk/test/expression_command/call-function/TestCallStdStringFunction.py Wed Oct 24 16:44:48 2012
@@ -9,7 +9,7 @@
class ExprCommandCallFunctionTestCase(TestBase):
- mydir = os.path.join("expressioa_command", "call-function")
+ mydir = os.path.join("expression_command", "call-function")
def setUp(self):
# Call super's setUp().
Modified: lldb/trunk/test/lldbtest.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/test/lldbtest.py?rev=166627&r1=166626&r2=166627&view=diff
==============================================================================
--- lldb/trunk/test/lldbtest.py (original)
+++ lldb/trunk/test/lldbtest.py Wed Oct 24 16:44:48 2012
@@ -417,18 +417,9 @@
accomplish things.
"""
- mydir_ = None
- @classmethod
- def mydir_get(cls):
- return cls.mydir_
-
- @classmethod
- def mydir_set(cls,val):
- print "mydir_set"
- cls.mydir_ = val
-
- Base.mydir = property(mydir_get,mydir_set)
+ # The concrete subclass should override this attribute.
+ mydir = None
# Keep track of the old current working directory.
oldcwd = None
More information about the lldb-commits
mailing list