File: poll-in-drop.rs

package info (click to toggle)
rust-async-backtrace 0.2.7-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 252 kB
  • sloc: makefile: 2
file content (26 lines) | stat: -rw-r--r-- 832 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/// A test that async-backtrace is well-behaved when frames are await'ed inside
/// a drop guard.
mod util;
use async_backtrace::framed;

#[test]
fn poll_in_drop() {
    util::model(|| {
        let on_drop = util::defer(|| util::run(inner()));
        util::run(outer(on_drop));
    });

    #[allow(drop_bounds)]
    #[framed]
    async fn outer(defer: impl Drop) {
        let _defer = defer;
    }

    #[framed]
    async fn inner() {
        let dump = async_backtrace::taskdump_tree(true);
        pretty_assertions::assert_str_eq!(util::strip(dump), "\
╼ poll_in_drop::poll_in_drop::outer<poll_in_drop::util::Defer<poll_in_drop::poll_in_drop::{{closure}}::{{closure}}, ()>>::{{closure}} at tests/poll-in-drop.rs:LINE:COL
  └╼ poll_in_drop::poll_in_drop::inner::{{closure}} at tests/poll-in-drop.rs:LINE:COL");
    }
}