diff options
Diffstat (limited to 'lldb/tools/lldb-perf/lib/TestCase.cpp')
-rw-r--r-- | lldb/tools/lldb-perf/lib/TestCase.cpp | 10 |
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 2067969f81a..beb335f6613 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) { |