Workaround for debugging Go tests

imgbot
Dmitry Sharshakov 3 years ago
parent 8cc6d68160
commit 2c3e2b979b
No known key found for this signature in database
GPG Key ID: 471FD32E15FD8473

@ -273,11 +273,14 @@ impl Application {
.. ..
}) => { }) => {
debugger.is_running = false; debugger.is_running = false;
let main = debugger let main = debugger.threads().await.ok().and_then(|threads| {
.threads() // Workaround for debugging Go tests. Main thread has * in beginning of its name
.await let mut main = threads.iter().find(|t| t.name.starts_with('*')).cloned();
.ok() if main.is_none() {
.and_then(|threads| threads.get(0).cloned()); main = threads.get(0).cloned();
}
main
});
if let Some(main) = main { if let Some(main) = main {
let (bt, _) = debugger.stack_trace(main.id).await.unwrap(); let (bt, _) = debugger.stack_trace(main.id).await.unwrap();

Loading…
Cancel
Save