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
diff --git a/lldb/test/lldbbench.py b/lldb/test/lldbbench.py
index 5150ee7..a8cbffb 100644
--- a/lldb/test/lldbbench.py
+++ b/lldb/test/lldbbench.py
@@ -106,7 +106,7 @@
 
     def tearDown(self):
         """Fixture for unittest test case teardown."""
-        super(BenchBase, self).setUp()
+        super(BenchBase, self).tearDown()
         #TestBase.tearDown(self)
         del self.stopwatch