forked from OSchip/llvm-project
Reverting unwanted changes to the test suite
llvm-svn: 166627
This commit is contained in:
parent
5020f958d8
commit
1918627d93
|
@ -9,7 +9,7 @@ from lldbtest import *
|
|||
|
||||
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().
|
||||
|
|
|
@ -417,18 +417,9 @@ class Base(unittest2.TestCase):
|
|||
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
|
||||
|
|
Loading…
Reference in New Issue