Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / api / multithreaded / driver.cpp.template
blob32459425c88c3bb863ebd2c8051bc138da040e8a
2 /// LLDB C API Test Driver
4 #include <algorithm>
5 #include <iostream>
6 #include <iterator>
7 #include <string>
8 #include <vector>
9 #if !defined(_MSC_VER)
10   #include <signal.h>
11 #endif
13 %include_SB_APIs%
15 #include "common.h"
17 using namespace std;
18 using namespace lldb;
20 void test(SBDebugger &dbg, std::vector<string> args);
22 int main(int argc, char** argv) {
24 // Ignore SIGPIPE.  The lldb driver does this as well,
25 // because we seem to get spurious SIGPIPES on some
26 // Unixen that take the driver down.
27 #if !defined(_MSC_VER)
28   signal(SIGPIPE, SIG_IGN);
29 #endif
30   int code = 0;
32   SBDebugger::Initialize();
33   SBDebugger dbg = SBDebugger::Create();
34   dbg.HandleCommand("settings set symbols.enable-external-lookup false");
35   dbg.HandleCommand(
36       "settings set plugin.process.gdb-remote.packet-timeout 60");
38   try {
39     if (!dbg.IsValid())
40       throw Exception("invalid debugger");
41     vector<string> args(argv + 1, argv + argc);
43     test(dbg, args);
44   } catch (Exception &e) {
45     cout << "ERROR: " << e.what() << endl;
46     code = 1;
47   }
49   SBDebugger::Destroy(dbg);
50   return code;