<rdar://problem/13228487>

A test case for the performance of some LLDB formatters
Changes and improvements to the testing infrastructure itself

llvm-svn: 177100
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_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)
 {