You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
When running with cargo miri test --features full --test rt_common, Miri reported error: the main thread terminated without waiting for all remaining threads on the rt_common tests below:
Plausibly we could make the background threads exit more quickly, but it's not possible to actually join them. The shutdown_timeout API explicitly does not join the threads when the timeout hits, after all.
Version
tokio master branch
dcae2b9e
Description
When running with
cargo miri test --features full --test rt_common
, Miri reportederror: the main thread terminated without waiting for all remaining threads
on thert_common
tests below:To reproduce,
#![cfg(not(miri))]
needs to be removed.(I am not sure if this is an intended effect, but I will just file it under C-bug just in case this is something that should be fixed.)
The text was updated successfully, but these errors were encountered: