[INFO] fetching crate win-events 0.0.2...
[INFO] testing win-events-0.0.2 against 1.91.0 for beta-1.92-2
[INFO] extracting crate win-events 0.0.2 into /workspace/builds/worker-4-tc1/source
[INFO] started tweaking crates.io crate win-events 0.0.2
[INFO] finished tweaking crates.io crate win-events 0.0.2
[INFO] tweaked toml for crates.io crate win-events 0.0.2 written to /workspace/builds/worker-4-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate win-events 0.0.2 on toolchain 1.91.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.91.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.91.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.91.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] cfe002ac747622cec1a23f4b96a192549145e483c0f577294fae806c96aea666
[INFO] running `Command { std: "docker" "start" "-a" "cfe002ac747622cec1a23f4b96a192549145e483c0f577294fae806c96aea666", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "cfe002ac747622cec1a23f4b96a192549145e483c0f577294fae806c96aea666", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "cfe002ac747622cec1a23f4b96a192549145e483c0f577294fae806c96aea666", kill_on_drop: false }`
[INFO] [stdout] cfe002ac747622cec1a23f4b96a192549145e483c0f577294fae806c96aea666
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 917375cd5178d07a8ffbc80929260b90f622d95b634a65bd721a8cc96cab9119
[INFO] running `Command { std: "docker" "start" "-a" "917375cd5178d07a8ffbc80929260b90f622d95b634a65bd721a8cc96cab9119", kill_on_drop: false }`
[INFO] [stderr]    Compiling win-events v0.0.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/auto_reset.rs:62:18
[INFO] [stdout]    |
[INFO] [stdout] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/event.rs:28:18
[INFO] [stdout]    |
[INFO] [stdout] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>>;
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>>;
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/event.rs:60:29
[INFO] [stdout]    |
[INFO] [stdout] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                             ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                             |
[INFO] [stdout]    |                             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/manual_reset.rs:54:18
[INFO] [stdout]    |
[INFO] [stdout] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/events/manual_reset_pair.rs:195:18
[INFO] [stdout]     |
[INFO] [stdout] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/events/manual_reset_pair.rs:240:18
[INFO] [stdout]     |
[INFO] [stdout] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/pulse.rs:49:18
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/waiters/waiter.rs:32:24
[INFO] [stdout]    |
[INFO] [stdout] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<Data>, Box<dyn Error>> {
[INFO] [stdout]    |                        ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<'_, Data>, Box<dyn Error>> {
[INFO] [stdout]    |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.70s
[INFO] running `Command { std: "docker" "inspect" "917375cd5178d07a8ffbc80929260b90f622d95b634a65bd721a8cc96cab9119", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "917375cd5178d07a8ffbc80929260b90f622d95b634a65bd721a8cc96cab9119", kill_on_drop: false }`
[INFO] [stdout] 917375cd5178d07a8ffbc80929260b90f622d95b634a65bd721a8cc96cab9119
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 42dd45af967237d77d01d7b3a6e62a9aefcc143c629ffd6a8182a1d02f4ee835
[INFO] running `Command { std: "docker" "start" "-a" "42dd45af967237d77d01d7b3a6e62a9aefcc143c629ffd6a8182a1d02f4ee835", kill_on_drop: false }`
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/auto_reset.rs:62:18
[INFO] [stdout]    |
[INFO] [stdout] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/event.rs:28:18
[INFO] [stdout]    |
[INFO] [stdout] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>>;
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>>;
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/event.rs:60:29
[INFO] [stdout]    |
[INFO] [stdout] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                             ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                             |
[INFO] [stdout]    |                             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/manual_reset.rs:54:18
[INFO] [stdout]    |
[INFO] [stdout] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/events/manual_reset_pair.rs:195:18
[INFO] [stdout]     |
[INFO] [stdout] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/events/manual_reset_pair.rs:240:18
[INFO] [stdout]     |
[INFO] [stdout] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/pulse.rs:49:18
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/waiters/waiter.rs:32:24
[INFO] [stdout]    |
[INFO] [stdout] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<Data>, Box<dyn Error>> {
[INFO] [stdout]    |                        ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<'_, Data>, Box<dyn Error>> {
[INFO] [stdout]    |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling win-events v0.0.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/auto_reset.rs:62:18
[INFO] [stdout]    |
[INFO] [stdout] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/event.rs:28:18
[INFO] [stdout]    |
[INFO] [stdout] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>>;
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>>;
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/event.rs:60:29
[INFO] [stdout]    |
[INFO] [stdout] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                             ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                             |
[INFO] [stdout]    |                             the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                                +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/manual_reset.rs:54:18
[INFO] [stdout]    |
[INFO] [stdout] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/events/manual_reset_pair.rs:195:18
[INFO] [stdout]     |
[INFO] [stdout] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]    --> src/events/manual_reset_pair.rs:240:18
[INFO] [stdout]     |
[INFO] [stdout] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]     |                  |
[INFO] [stdout]     |                  the lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]     |
[INFO] [stdout] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]     |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/events/pulse.rs:49:18
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stdout]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                  |
[INFO] [stdout]    |                  the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stdout]    |                                                     +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/waiters/waiter.rs:32:24
[INFO] [stdout]    |
[INFO] [stdout] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<Data>, Box<dyn Error>> {
[INFO] [stdout]    |                        ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stdout]    |                        |
[INFO] [stdout]    |                        the lifetime is elided here
[INFO] [stdout]    |
[INFO] [stdout]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout] help: use `'_` for type paths
[INFO] [stdout]    |
[INFO] [stdout] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<'_, Data>, Box<dyn Error>> {
[INFO] [stdout]    |                                                    +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1.96s
[INFO] running `Command { std: "docker" "inspect" "42dd45af967237d77d01d7b3a6e62a9aefcc143c629ffd6a8182a1d02f4ee835", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "42dd45af967237d77d01d7b3a6e62a9aefcc143c629ffd6a8182a1d02f4ee835", kill_on_drop: false }`
[INFO] [stdout] 42dd45af967237d77d01d7b3a6e62a9aefcc143c629ffd6a8182a1d02f4ee835
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+1.91.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] e0dee117a0eaa7093144373a3a49ca9bdd2be181821a323cdae846bb26d82b89
[INFO] running `Command { std: "docker" "start" "-a" "e0dee117a0eaa7093144373a3a49ca9bdd2be181821a323cdae846bb26d82b89", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/events/auto_reset.rs:62:18
[INFO] [stderr]    |
[INFO] [stderr] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stderr]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                  |
[INFO] [stderr]    |                  the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr]    = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 62 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stderr]    |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/events/event.rs:28:18
[INFO] [stderr]    |
[INFO] [stderr] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>>;
[INFO] [stderr]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                  |
[INFO] [stderr]    |                  the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 28 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>>;
[INFO] [stderr]    |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/events/event.rs:60:29
[INFO] [stderr]    |
[INFO] [stderr] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stderr]    |                             ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                             |
[INFO] [stderr]    |                             the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 60 |     pub(crate) fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stderr]    |                                                                +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/events/manual_reset.rs:54:18
[INFO] [stderr]    |
[INFO] [stderr] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stderr]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                  |
[INFO] [stderr]    |                  the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 54 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stderr]    |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/events/manual_reset_pair.rs:195:18
[INFO] [stderr]     |
[INFO] [stderr] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stderr]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                  |
[INFO] [stderr]     |                  the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 195 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stderr]     |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]    --> src/events/manual_reset_pair.rs:240:18
[INFO] [stderr]     |
[INFO] [stderr] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stderr]     |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]     |                  |
[INFO] [stderr]     |                  the lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]     |
[INFO] [stderr] 240 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stderr]     |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/events/pulse.rs:49:18
[INFO] [stderr]    |
[INFO] [stderr] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<()>>, Box<dyn Error>> {
[INFO] [stderr]    |                  ^^^^^                   ^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                  |
[INFO] [stderr]    |                  the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 49 |     fn wake_lock(&self) -> Result<Option<MutexGuard<'_, ()>>, Box<dyn Error>> {
[INFO] [stderr]    |                                                     +++
[INFO] [stderr] 
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/waiters/waiter.rs:32:24
[INFO] [stderr]    |
[INFO] [stderr] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<Data>, Box<dyn Error>> {
[INFO] [stderr]    |                        ^^^^^            ^^^^^^^^^^^^^^^^ the same lifetime is hidden here
[INFO] [stderr]    |                        |
[INFO] [stderr]    |                        the lifetime is elided here
[INFO] [stderr]    |
[INFO] [stderr]    = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr] help: use `'_` for type paths
[INFO] [stderr]    |
[INFO] [stderr] 32 |     pub(crate) fn lock(&self) -> Result<MutexGuard<'_, Data>, Box<dyn Error>> {
[INFO] [stderr]    |                                                    +++
[INFO] [stderr] 
[INFO] [stderr] warning: `win-events` (lib) generated 8 warnings (run `cargo fix --lib -p win-events` to apply 8 suggestions)
[INFO] [stderr] warning: `win-events` (lib test) generated 8 warnings (8 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.06s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/win_events-367f67c5afa6b970)
[INFO] [stdout] 
[INFO] [stdout] running 0 tests
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/auto_reset_event_test.rs (/opt/rustwide/target/debug/deps/auto_reset_event_test-e07429d5b5d1981e)
[INFO] [stdout] 
[INFO] [stdout] running 20 tests
[INFO] [stdout] test ae_test_init_false ... ok
[INFO] [stdout] test ae_test_init_true ... ok
[INFO] [stdout] test ae_test_clear_event ... ok
[INFO] [stdout] test ae_test_set_event ... ok
[INFO] [stdout] test ae_test_wait_all_already_set ... ok
[INFO] [stdout] test ae_test_wait_all_timeout ... ok
[INFO] [stdout] test ae_test_wait_all_toggled_initialized_timeout ... ok
[INFO] [stdout] test ae_test_wait_all_toggled_timeout ... ok
[INFO] [stdout] test ae_test_wait_already_set ... ok
[INFO] [stdout] test ae_test_multiple_waiters_all ... ok
[INFO] [stdout] test ae_test_thread_wait ... ok
[INFO] [stdout] test ae_test_multiple_waiters_one ... ok
[INFO] [stdout] test ae_test_wait_first_already_set ... ok
[INFO] [stdout] test ae_test_wait_timeout ... ok
[INFO] [stdout] test ae_test_wait_first_toggled_timeout ... ok
[INFO] [stdout] test ae_test_wait_all_partial_set ... ok
[INFO] [stdout] test ae_test_wait_all ... ok
[INFO] [stdout] test ae_test_wait_first_timeout ... ok
[INFO] [stdout] test ae_test_wait_first ... ok
[INFO] [stdout] test ae_test_multiple_ordered_lock_all ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 20 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.05s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/event_test.rs (/opt/rustwide/target/debug/deps/event_test-a08b52e983b9360f)
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stderr]      Running tests/manual_reset_event_test.rs (/opt/rustwide/target/debug/deps/manual_reset_event_test-a0271d2ed364091e)
[INFO] [stdout] test test_event_guard ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 15 tests
[INFO] [stdout] test me_test_clear_event ... ok
[INFO] [stdout] test me_test_set_event ... ok
[INFO] [stdout] test me_test_wait_all_already_set ... ok
[INFO] [stdout] test me_test_wait_all_timeout ... ok
[INFO] [stdout] test me_test_wait_all_cleared_timeout ... ok
[INFO] [stdout] test me_test_wait_already_set ... ok
[INFO] [stdout] test me_test_init_true ... ok
[INFO] [stdout] test me_test_wait_timeout ... ok
[INFO] [stdout] test me_test_thread_wait ... ok
[INFO] [stdout] test me_test_wait_first_already_set ... ok
[INFO] [stdout] test me_test_init_false ... ok
[INFO] [stdout] test me_test_wait_first_timeout ... ok
[INFO] [stdout] test me_test_wait_all_partial_set ... ok
[INFO] [stdout] test me_test_wait_all ... ok
[INFO] [stdout] test me_test_wait_first ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 15 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/manual_reset_event_test_pair.rs (/opt/rustwide/target/debug/deps/manual_reset_event_test_pair-01eaacb9fe19721d)
[INFO] [stdout] 
[INFO] [stdout] running 16 tests
[INFO] [stdout] test mep_test_clear_event ... ok
[INFO] [stdout] test mep_test_init_false ... ok
[INFO] [stdout] test mep_test_init_true ... ok
[INFO] [stdout] test mep_test_wait_all_cleared_timeout ... ok
[INFO] [stdout] test mep_test_set_event ... ok
[INFO] [stdout] test mep_test_wait_all_already_set ... ok
[INFO] [stdout] test mep_test_wait_already_set ... ok
[INFO] [stdout] test mep_test_wait_first_already_set ... ok
[INFO] [stdout] test mep_test_wait_all_timeout ... ok
[INFO] [stdout] test mep_test_wait_timeout ... ok
[INFO] [stdout] test mep_test_thread_wait ... ok
[INFO] [stdout] test mep_test_wait_all ... ok
[INFO] [stdout] test mep_test_wait_all_partial_set ... ok
[INFO] [stdout] test mep_test_wait_first_timeout ... ok
[INFO] [stdout] test mep_test_wait_first ... ok
[INFO] [stdout] test mep_test_wait_not ... ok
[INFO] [stderr]      Running tests/pulse_event_test.rs (/opt/rustwide/target/debug/deps/pulse_event_test-67b6f294306716f7)
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 16 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.51s
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] running 11 tests
[INFO] [stdout] test pe_test_set_event ... ok
[INFO] [stdout] test pe_test_clear_event ... ok
[INFO] [stdout] test pe_test_init ... ok
[INFO] [stdout] test pe_test_wait_all ... FAILED
[INFO] [stdout] test pe_test_wait_all_timeout ... ok
[INFO] [stdout] test pe_test_wait_timeout ... ok
[INFO] [stdout] test pe_test_wait_all_partial_set ... ok
[INFO] [stdout] test pe_test_wait_already_set ... ok
[INFO] [stdout] test pe_test_wait_first_timeout ... ok
[INFO] [stdout] test pe_test_thread_wait ... ok
[INFO] [stdout] test pe_test_wait_first ... ok
[INFO] [stderr] error: test failed, to rerun pass `--test pulse_event_test`
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- pe_test_wait_all stdout ----
[INFO] [stdout] 
[INFO] [stdout] thread 'pe_test_wait_all' (103) panicked at tests/pulse_event_test.rs:113:5:
[INFO] [stdout] assertion `left == right` failed
[INFO] [stdout]   left: true
[INFO] [stdout]  right: false
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5a2593ad3d42 - std::backtrace_rs::backtrace::libunwind::trace::h62f3c6bea0fedab3
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5a2593ad3d42 - std::backtrace_rs::backtrace::trace_unsynchronized::hc41aaca6c0af0bde
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5a2593ad3d42 - std::sys::backtrace::_print_fmt::h33ac2b97007106cc
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x5a2593ad3d42 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::h4e0a3aeea0f9c085
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x5a2593ae400f - core::fmt::rt::Argument::fmt::h1edd6a3e00b22f10
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x5a2593ae400f - core::fmt::write::hecf68a131630c74d
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x5a2593aa0fd1 - std::io::default_write_fmt::ha6b238eff7f0ef8a
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x5a2593aa0fd1 - std::io::Write::write_fmt::h9846fe3d2a36c1ea
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x5a2593aad202 - std::sys::backtrace::BacktraceLock::print::h75160192768e5621
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x5a2593ab1eaf - std::panicking::default_hook::{{closure}}::h14d82797cfb1ddcb
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:301:27
[INFO] [stdout]   10:     0x5a2593ab1d41 - std::panicking::default_hook::h63f9bf8161c5d325
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:325:9
[INFO] [stdout]   11:     0x5a2593a5d4ee - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::hb8126f8384f98101
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/alloc/src/boxed.rs:1999:9
[INFO] [stdout]   12:     0x5a2593a5d4ee - test::test_main_with_exit_callback::{{closure}}::hae96ae0cd2f2ce70
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/test/src/lib.rs:145:21
[INFO] [stdout]   13:     0x5a2593ab256f - <alloc::boxed::Box<F,A> as core::ops::function::Fn<Args>>::call::ha703f6686c81d0c6
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/alloc/src/boxed.rs:1999:9
[INFO] [stdout]   14:     0x5a2593ab256f - std::panicking::panic_with_hook::h3173740e06bd0752
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:842:13
[INFO] [stdout]   15:     0x5a2593ab23ca - std::panicking::panic_handler::{{closure}}::hbac492c61eb56a87
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:707:13
[INFO] [stdout]   16:     0x5a2593aad339 - std::sys::backtrace::__rust_end_short_backtrace::haa3eac3df9535320
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   17:     0x5a2593a9560d - __rustc[de0091b922c53d7e]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:698:5
[INFO] [stdout]   18:     0x5a2593aeba60 - core::panicking::panic_fmt::h5138da2ef87be35b
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/panicking.rs:75:14
[INFO] [stdout]   19:     0x5a2593aeb863 - core::panicking::assert_failed_inner::h1c85740028aaa416
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/panicking.rs:439:17
[INFO] [stdout]   20:     0x5a2593a3584f - core::panicking::assert_failed::hfc1f6da65097b2c1
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/panicking.rs:394:5
[INFO] [stdout]   21:     0x5a2593a2fd36 - pulse_event_test::pe_test_wait_all::h0ea1e608796bbea1
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/pulse_event_test.rs:113:5
[INFO] [stdout]   22:     0x5a2593a2ffc7 - pulse_event_test::pe_test_wait_all::{{closure}}::haffe219ed388a449
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/pulse_event_test.rs:91:22
[INFO] [stdout]   23:     0x5a2593a337d6 - core::ops::function::FnOnce::call_once::h3243e0659b4c6b48
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   24:     0x5a2593a5d2cb - core::ops::function::FnOnce::call_once::h8f50ae93d93b62b4
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   25:     0x5a2593a5d2cb - test::__rust_begin_short_backtrace::h447963718d05a644
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/test/src/lib.rs:663:18
[INFO] [stdout]   26:     0x5a2593a72f05 - test::run_test_in_process::{{closure}}::hf890ba4755ca86c0
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/test/src/lib.rs:686:74
[INFO] [stdout]   27:     0x5a2593a72f05 - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::h31e4b2860e583faa
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/panic/unwind_safe.rs:274:9
[INFO] [stdout]   28:     0x5a2593a72f05 - std::panicking::catch_unwind::do_call::hec7cdbbe797e2cab
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:590:40
[INFO] [stdout]   29:     0x5a2593a72f05 - std::panicking::catch_unwind::h24d3b93458b5ba67
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:553:19
[INFO] [stdout]   30:     0x5a2593a72f05 - std::panic::catch_unwind::h46eeec7cf9c9336c
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x5a2593a72f05 - test::run_test_in_process::h290de6e559006104
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/test/src/lib.rs:686:27
[INFO] [stdout]   32:     0x5a2593a72f05 - test::run_test::{{closure}}::h26eeb2c5f7e9a995
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/test/src/lib.rs:607:43
[INFO] [stdout]   33:     0x5a2593a49704 - test::run_test::{{closure}}::h85af00882daabeaa
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/test/src/lib.rs:637:41
[INFO] [stdout]   34:     0x5a2593a49704 - std::sys::backtrace::__rust_begin_short_backtrace::h9d9305dda51fa5f2
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/sys/backtrace.rs:158:18
[INFO] [stdout]   35:     0x5a2593a4d0aa - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::hc6aada8b43f0527b
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/thread/mod.rs:559:17
[INFO] [stdout]   36:     0x5a2593a4d0aa - <core::panic::unwind_safe::AssertUnwindSafe<F> as core::ops::function::FnOnce<()>>::call_once::ha89fe5505c1206f5
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/panic/unwind_safe.rs:274:9
[INFO] [stdout]   37:     0x5a2593a4d0aa - std::panicking::catch_unwind::do_call::he3e0bef721d99583
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:590:40
[INFO] [stdout]   38:     0x5a2593a4d0aa - std::panicking::catch_unwind::ha8241964d3d773cd
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panicking.rs:553:19
[INFO] [stdout]   39:     0x5a2593a4d0aa - std::panic::catch_unwind::ha8554bc7696cae72
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/panic.rs:359:14
[INFO] [stdout]   40:     0x5a2593a4d0aa - std::thread::Builder::spawn_unchecked_::{{closure}}::he06f1f62b4c90f8d
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/thread/mod.rs:557:30
[INFO] [stdout]   41:     0x5a2593a4d0aa - core::ops::function::FnOnce::call_once{{vtable.shim}}::ha7fd20ecae19b9b9
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   42:     0x5a2593aa852f - <alloc::boxed::Box<F,A> as core::ops::function::FnOnce<Args>>::call_once::h43642ed9c40e0ab2
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/alloc/src/boxed.rs:1985:9
[INFO] [stdout]   43:     0x5a2593aa852f - std::sys::thread::unix::Thread::new::thread_start::h38da0f633f090ce2
[INFO] [stdout]                                at /rustc/f8297e351a40c1439a467bbbb6879088047f50b3/library/std/src/sys/thread/unix.rs:126:17
[INFO] [stdout]   44:     0x7569a91afaa4 - <unknown>
[INFO] [stdout]   45:     0x7569a923ca64 - clone
[INFO] [stdout]   46:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     pe_test_wait_all
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 10 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.18s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "e0dee117a0eaa7093144373a3a49ca9bdd2be181821a323cdae846bb26d82b89", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "e0dee117a0eaa7093144373a3a49ca9bdd2be181821a323cdae846bb26d82b89", kill_on_drop: false }`
[INFO] [stdout] e0dee117a0eaa7093144373a3a49ca9bdd2be181821a323cdae846bb26d82b89
