Reverting unwanted changes to the test suite

llvm-svn: 166627
This commit is contained in:
Enrico Granata 2012-10-24 21:44:48 +00:00
parent 5020f958d8
commit 1918627d93
2 changed files with 3 additions and 12 deletions

View File

@ -9,7 +9,7 @@ from lldbtest import *
class ExprCommandCallFunctionTestCase(TestBase): class ExprCommandCallFunctionTestCase(TestBase):
mydir = os.path.join("expressioa_command", "call-function") mydir = os.path.join("expression_command", "call-function")
def setUp(self): def setUp(self):
# Call super's setUp(). # Call super's setUp().

View File

@ -417,18 +417,9 @@ class Base(unittest2.TestCase):
accomplish things. accomplish things.
""" """
mydir_ = None
@classmethod # The concrete subclass should override this attribute.
def mydir_get(cls): mydir = None
return cls.mydir_
@classmethod
def mydir_set(cls,val):
print "mydir_set"
cls.mydir_ = val
Base.mydir = property(mydir_get,mydir_set)
# Keep track of the old current working directory. # Keep track of the old current working directory.
oldcwd = None oldcwd = None