Tests decorated with @benchmarks_test do not participate in the remote-macosx test suite run.

But, still, tearDown() should call super.tearDown(), not super.setUp(). :-)

llvm-svn: 155170
This commit is contained in:
Johnny Chen 2012-04-19 23:50:00 +00:00
parent d155c78d18
commit 6acfb690b5

View File

@ -106,7 +106,7 @@ class BenchBase(TestBase):
def tearDown(self):
"""Fixture for unittest test case teardown."""
super(BenchBase, self).setUp()
super(BenchBase, self).tearDown()
#TestBase.tearDown(self)
del self.stopwatch