Skip to content

Commit

Permalink
[lldb-vscode] attempt to fix flakiness
Browse files Browse the repository at this point in the history
There are many tests failing intermittently for lldb-vscode after
https://reviews.llvm.org/rGaa4685c0fb3aab5acb90be5fd3eb5ba8bf1e3211. I'm
unsure if this actually the culprit, so I'm softly removing that feature
to see if that fixes the issue.
  • Loading branch information
walter-erquinigo committed Jun 18, 2021
1 parent f736689 commit f2c009d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lldb/tools/lldb-vscode/lldb-vscode.cpp
Expand Up @@ -1411,7 +1411,8 @@ void request_modules(const llvm::json::Object &request) {
// }
void request_initialize(const llvm::json::Object &request) {
g_vsc.debugger = lldb::SBDebugger::Create(true /*source_init_files*/);
g_vsc.progress_event_thread = std::thread(ProgressEventThreadFunction);
// TODO: reenable once confirmed that this doesn't make the buildbots flaky
// g_vsc.progress_event_thread = std::thread(ProgressEventThreadFunction);

// Create an empty target right away since we might get breakpoint requests
// before we are given an executable to launch in a "launch" request, or a
Expand Down

0 comments on commit f2c009d

Please sign in to comment.