aboutsummaryrefslogtreecommitdiff
path: root/lldb/tools/lldb-perf/lib/TestCase.cpp
diff options
context:
space:
mode:
authorEnrico Granata <egranata@apple.com>2013-03-14 19:00:42 +0000
committerEnrico Granata <egranata@apple.com>2013-03-14 19:00:42 +0000
commit86910577ccfc9da4b5d21a2d1844a4781413c80a (patch)
tree8301d26ab3bd2460c8ed65485e3ab1488a5d210b /lldb/tools/lldb-perf/lib/TestCase.cpp
parent928f65a8aaca0383d24cf036b757bc120eaebcf4 (diff)
downloadllvm-86910577ccfc9da4b5d21a2d1844a4781413c80a.zip
llvm-86910577ccfc9da4b5d21a2d1844a4781413c80a.tar.gz
llvm-86910577ccfc9da4b5d21a2d1844a4781413c80a.tar.bz2
<rdar://problem/13228487>
A test case for the performance of some LLDB formatters Changes and improvements to the testing infrastructure itself llvm-svn: 177100
Diffstat (limited to 'lldb/tools/lldb-perf/lib/TestCase.cpp')
-rw-r--r--lldb/tools/lldb-perf/lib/TestCase.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/lldb/tools/lldb-perf/lib/TestCase.cpp b/lldb/tools/lldb-perf/lib/TestCase.cpp
index 2067969f..beb335f 100644
--- a/lldb/tools/lldb-perf/lib/TestCase.cpp
+++ b/lldb/tools/lldb-perf/lib/TestCase.cpp
@@ -18,17 +18,17 @@ m_process(),
m_thread(),
m_listener(),
m_verbose(false)
-{}
-
-void
-TestCase::Setup (int argc, const char** argv)
{
- SBDebugger::Initialize();
+ SBDebugger::Initialize();
SBHostOS::ThreadCreated ("<lldb-tester.app.main>");
m_debugger = SBDebugger::Create(false);
m_listener = m_debugger.GetListener();
}
+void
+TestCase::Setup (int argc, const char** argv)
+{}
+
bool
TestCase::Launch (const char** args, const char* cwd)
{