diff options
author | Johnny Chen <johnny.chen@apple.com> | 2012-04-19 23:50:00 +0000 |
---|---|---|
committer | Johnny Chen <johnny.chen@apple.com> | 2012-04-19 23:50:00 +0000 |
commit | 6acfb690b58b78779511a83b687ca30c70b28643 (patch) | |
tree | 8b8c5b673c590b2f2aedadeb88efe555b728811a | |
parent | d155c78d1841bd0a563d932a38ddcc2b391a4c72 (diff) | |
download | bcm5719-llvm-6acfb690b58b78779511a83b687ca30c70b28643.tar.gz bcm5719-llvm-6acfb690b58b78779511a83b687ca30c70b28643.zip |
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
-rw-r--r-- | lldb/test/lldbbench.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbbench.py b/lldb/test/lldbbench.py index 5150ee75ca9..a8cbffb8cd7 100644 --- a/lldb/test/lldbbench.py +++ b/lldb/test/lldbbench.py @@ -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 |