[INFO] fetching crate handy_async 0.2.13... [INFO] testing handy_async-0.2.13 against master#62efba8a050c64249dab942951bb28f710208bc8 for pr-90799 [INFO] extracting crate handy_async 0.2.13 into /workspace/builds/worker-16/source [INFO] validating manifest of crates.io crate handy_async 0.2.13 on toolchain 62efba8a050c64249dab942951bb28f710208bc8 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate handy_async 0.2.13 [INFO] finished tweaking crates.io crate handy_async 0.2.13 [INFO] tweaked toml for crates.io crate handy_async 0.2.13 written to /workspace/builds/worker-16/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/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:5736fa189c1c60b01babf4b8b698fe57b6ecc41933a7ff2e0b8d7a221459412b" "/opt/rustwide/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] f3de6f3cfba3eeeaf21f934f014a69c7b71e437fd034e14546ea3844b4a24fe5 [INFO] running `Command { std: "docker" "start" "-a" "f3de6f3cfba3eeeaf21f934f014a69c7b71e437fd034e14546ea3844b4a24fe5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "f3de6f3cfba3eeeaf21f934f014a69c7b71e437fd034e14546ea3844b4a24fe5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f3de6f3cfba3eeeaf21f934f014a69c7b71e437fd034e14546ea3844b4a24fe5", kill_on_drop: false }` [INFO] [stdout] f3de6f3cfba3eeeaf21f934f014a69c7b71e437fd034e14546ea3844b4a24fe5 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/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=forbid" "-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:5736fa189c1c60b01babf4b8b698fe57b6ecc41933a7ff2e0b8d7a221459412b" "/opt/rustwide/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 9d512ad81fab2db23c0cafece54ae6f752e01cf6bf896a063a558da0dd9d1c43 [INFO] running `Command { std: "docker" "start" "-a" "9d512ad81fab2db23c0cafece54ae6f752e01cf6bf896a063a558da0dd9d1c43", kill_on_drop: false }` [INFO] [stderr] Compiling futures v0.1.31 [INFO] [stderr] Compiling handy_async v0.2.13 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/pattern/mod.rs:9:28 [INFO] [stdout] | [INFO] [stdout] 9 | type BoxFuture = Box + Send + 'static>; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send + 'static` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/pattern/mod.rs:143:32 [INFO] [stdout] | [INFO] [stdout] 143 | type BoxMatchFn = Box BoxFuture<(M, T), AsyncError>>; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(M) -> BoxFuture<(M, T), AsyncError>` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/error.rs:123:32 [INFO] [stdout] | [INFO] [stdout] 123 | fn cause(&self) -> Option<&error::Error> { [INFO] [stdout] | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/error.rs:121:20 [INFO] [stdout] | [INFO] [stdout] 121 | self.error.description() [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::cause`: replaced by Error::source, which can support downcasting [INFO] [stdout] --> src/error.rs:124:20 [INFO] [stdout] | [INFO] [stdout] 124 | self.error.cause() [INFO] [stdout] | ^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 3.08s [INFO] running `Command { std: "docker" "inspect" "9d512ad81fab2db23c0cafece54ae6f752e01cf6bf896a063a558da0dd9d1c43", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "9d512ad81fab2db23c0cafece54ae6f752e01cf6bf896a063a558da0dd9d1c43", kill_on_drop: false }` [INFO] [stdout] 9d512ad81fab2db23c0cafece54ae6f752e01cf6bf896a063a558da0dd9d1c43 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/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=forbid" "-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:5736fa189c1c60b01babf4b8b698fe57b6ecc41933a7ff2e0b8d7a221459412b" "/opt/rustwide/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 9e588c9fbe234952fc5321db13d753a99e1983bc2f05ed5001657f643dac5765 [INFO] running `Command { std: "docker" "start" "-a" "9e588c9fbe234952fc5321db13d753a99e1983bc2f05ed5001657f643dac5765", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/pattern/mod.rs:9:28 [INFO] [stdout] | [INFO] [stdout] 9 | type BoxFuture = Box + Send + 'static>; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send + 'static` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/pattern/mod.rs:143:32 [INFO] [stdout] | [INFO] [stdout] 143 | type BoxMatchFn = Box BoxFuture<(M, T), AsyncError>>; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(M) -> BoxFuture<(M, T), AsyncError>` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/error.rs:123:32 [INFO] [stdout] | [INFO] [stdout] 123 | fn cause(&self) -> Option<&error::Error> { [INFO] [stdout] | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling handy_async v0.2.13 (/opt/rustwide/workdir) [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/error.rs:121:20 [INFO] [stdout] | [INFO] [stdout] 121 | self.error.description() [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::cause`: replaced by Error::source, which can support downcasting [INFO] [stdout] --> src/error.rs:124:20 [INFO] [stdout] | [INFO] [stdout] 124 | self.error.cause() [INFO] [stdout] | ^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/pattern/mod.rs:9:28 [INFO] [stdout] | [INFO] [stdout] 9 | type BoxFuture = Box + Send + 'static>; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send + 'static` [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/pattern/mod.rs:143:32 [INFO] [stdout] | [INFO] [stdout] 143 | type BoxMatchFn = Box BoxFuture<(M, T), AsyncError>>; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(M) -> BoxFuture<(M, T), AsyncError>` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/error.rs:123:32 [INFO] [stdout] | [INFO] [stdout] 123 | fn cause(&self) -> Option<&error::Error> { [INFO] [stdout] | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stdout] --> src/error.rs:121:20 [INFO] [stdout] | [INFO] [stdout] 121 | self.error.description() [INFO] [stdout] | ^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(deprecated)]` on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: use of deprecated associated function `std::error::Error::cause`: replaced by Error::source, which can support downcasting [INFO] [stdout] --> src/error.rs:124:20 [INFO] [stdout] | [INFO] [stdout] 124 | self.error.cause() [INFO] [stdout] | ^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 5 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 2.56s [INFO] running `Command { std: "docker" "inspect" "9e588c9fbe234952fc5321db13d753a99e1983bc2f05ed5001657f643dac5765", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "9e588c9fbe234952fc5321db13d753a99e1983bc2f05ed5001657f643dac5765", kill_on_drop: false }` [INFO] [stdout] 9e588c9fbe234952fc5321db13d753a99e1983bc2f05ed5001657f643dac5765 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-16/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=forbid" "-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:5736fa189c1c60b01babf4b8b698fe57b6ecc41933a7ff2e0b8d7a221459412b" "/opt/rustwide/cargo-home/bin/cargo" "+62efba8a050c64249dab942951bb28f710208bc8" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 425e11176416aef859bd73f03eed2bcf4e30a21a75769130410cee651e0fa666 [INFO] running `Command { std: "docker" "start" "-a" "425e11176416aef859bd73f03eed2bcf4e30a21a75769130410cee651e0fa666", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pattern/mod.rs:9:28 [INFO] [stderr] | [INFO] [stderr] 9 | type BoxFuture = Box + Send + 'static>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future + Send + 'static` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/pattern/mod.rs:143:32 [INFO] [stderr] | [INFO] [stderr] 143 | type BoxMatchFn = Box BoxFuture<(M, T), AsyncError>>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn FnMut(M) -> BoxFuture<(M, T), AsyncError>` [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/error.rs:123:32 [INFO] [stderr] | [INFO] [stderr] 123 | fn cause(&self) -> Option<&error::Error> { [INFO] [stderr] | ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error` [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string() [INFO] [stderr] --> src/error.rs:121:20 [INFO] [stderr] | [INFO] [stderr] 121 | self.error.description() [INFO] [stderr] | ^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated associated function `std::error::Error::cause`: replaced by Error::source, which can support downcasting [INFO] [stderr] --> src/error.rs:124:20 [INFO] [stderr] | [INFO] [stderr] 124 | self.error.cause() [INFO] [stderr] | ^^^^^ [INFO] [stderr] [INFO] [stderr] warning: `handy_async` (lib) generated 5 warnings [INFO] [stderr] warning: `handy_async` (lib test) generated 5 warnings (5 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.38s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/handy_async-b0ad2b27c803ed69) [INFO] [stdout] [INFO] [stdout] running 1 test [INFO] [stderr] Doc-tests handy_async [INFO] [stdout] test io::read_pattern::test::it_works ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 30 tests [INFO] [stdout] test src/lib.rs - (line 10) - compile ... ok [INFO] [stdout] test src/io/external_size.rs - io::external_size::ExternalSize (line 12) ... ok [INFO] [stdout] test src/error.rs - error::AsyncError::map_state (line 80) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadBuf (line 195) ... ok [INFO] [stdout] test src/future.rs - future::FutureExt::select_either (line 10) ... ok [INFO] [stdout] test src/matcher/async_match.rs - matcher::async_match::AsyncMatch::into_stream (line 32) ... ok [INFO] [stdout] test src/io/misc.rs - io::misc::Counter (line 8) ... ok [INFO] [stdout] test src/io/async_read.rs - io::async_read::AsyncRead::async_read (line 21) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadPartialBuf (line 242) ... ok [INFO] [stdout] test src/error.rs - error::AsyncError (line 11) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadString (line 281) ... ok [INFO] [stdout] test src/pattern/mod.rs - pattern::Pattern::expect_eq (line 106) ... ok [INFO] [stdout] test src/io/write_pattern.rs - io::write_pattern::WriteBuf (line 159) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadFrom::read_from (line 95) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadFrom::into_stream (line 126) ... ok [INFO] [stdout] test src/io/async_read.rs - io::async_read::AsyncRead::async_read_non_empty (line 45) ... ok [INFO] [stdout] test src/matcher/mod.rs - matcher::Matcher (line 31) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadFrom (line 46) ... ok [INFO] [stdout] test src/io/async_write.rs - io::async_write::AsyncWrite::async_write_all (line 48) ... ok [INFO] [stdout] test src/io/async_write.rs - io::async_write::AsyncWrite::async_write (line 22) ... ok [INFO] [stdout] test src/io/write_pattern.rs - io::write_pattern::WriteInto::write_into (line 81) ... ok [INFO] [stdout] test src/io/write_pattern.rs - io::write_pattern::WritePartialBuf (line 207) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadLine (line 610) ... ok [INFO] [stdout] test src/io/async_write.rs - io::async_write::AsyncWrite::async_flush (line 71) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadAll (line 365) ... ok [INFO] [stdout] test src/io/async_read.rs - io::async_read::AsyncRead::async_read_exact (line 69) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadEos (line 557) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadLengthPrefixedBytes (line 319) ... ok [INFO] [stdout] test src/io/write_pattern.rs - io::write_pattern::WriteInto (line 46) ... ok [INFO] [stdout] test src/io/read_pattern.rs - io::read_pattern::ReadUtf8 (line 409) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 30 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 2.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "425e11176416aef859bd73f03eed2bcf4e30a21a75769130410cee651e0fa666", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "425e11176416aef859bd73f03eed2bcf4e30a21a75769130410cee651e0fa666", kill_on_drop: false }` [INFO] [stdout] 425e11176416aef859bd73f03eed2bcf4e30a21a75769130410cee651e0fa666