[INFO] fetching crate safina 0.7.0... [INFO] testing safina-0.7.0 against try#b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b for pr-145330-1 [INFO] extracting crate safina 0.7.0 into /workspace/builds/worker-6-tc2/source [INFO] started tweaking crates.io crate safina 0.7.0 [INFO] removed 0 missing tests [INFO] finished tweaking crates.io crate safina 0.7.0 [INFO] tweaked toml for crates.io crate safina 0.7.0 written to /workspace/builds/worker-6-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate safina 0.7.0 on toolchain b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate safina 0.7.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 2d6180c6e14eac635eb9dfb481d43cf286f43a80397904305656c1ea4d619a77 [INFO] running `Command { std: "docker" "start" "-a" "2d6180c6e14eac635eb9dfb481d43cf286f43a80397904305656c1ea4d619a77", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "2d6180c6e14eac635eb9dfb481d43cf286f43a80397904305656c1ea4d619a77", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "2d6180c6e14eac635eb9dfb481d43cf286f43a80397904305656c1ea4d619a77", kill_on_drop: false }` [INFO] [stdout] 2d6180c6e14eac635eb9dfb481d43cf286f43a80397904305656c1ea4d619a77 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/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" "RUSTDOCFLAGS=--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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] d4fc9f90a31482af8d68183414ae40941c4a96fae14c514a23bfdfcce71a994d [INFO] running `Command { std: "docker" "start" "-a" "d4fc9f90a31482af8d68183414ae40941c4a96fae14c514a23bfdfcce71a994d", kill_on_drop: false }` [INFO] [stderr] Compiling safina v0.7.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 329 - pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] 329 + pub fn spawn(self: &Arc, fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:344:52 [INFO] [stdout] | [INFO] [stdout] 344 | pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 344 - pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 344 + pub fn spawn_unpin(self: &Arc, fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:379:52 [INFO] [stdout] | [INFO] [stdout] 379 | pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 379 - pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] 379 + pub fn block_on(self: &Arc, fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:398:19 [INFO] [stdout] | [INFO] [stdout] 398 | fut: impl (Future) + Unpin + 'static, [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 398 - fut: impl (Future) + Unpin + 'static, [INFO] [stdout] 398 + fut: impl Future + Unpin + 'static, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:519:24 [INFO] [stdout] | [INFO] [stdout] 519 | pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 519 - pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] 519 + pub fn spawn(fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:536:30 [INFO] [stdout] | [INFO] [stdout] 536 | pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 536 - pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 536 + pub fn spawn_unpin(fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:584:30 [INFO] [stdout] | [INFO] [stdout] 584 | pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 584 - pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] 584 + pub fn block_on(fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:602:40 [INFO] [stdout] | [INFO] [stdout] 602 | pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 602 - pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] 602 + pub fn block_on_unpin(mut fut: impl Future + Unpin + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.21s [INFO] running `Command { std: "docker" "inspect" "d4fc9f90a31482af8d68183414ae40941c4a96fae14c514a23bfdfcce71a994d", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "d4fc9f90a31482af8d68183414ae40941c4a96fae14c514a23bfdfcce71a994d", kill_on_drop: false }` [INFO] [stdout] d4fc9f90a31482af8d68183414ae40941c4a96fae14c514a23bfdfcce71a994d [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6-tc2/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" "RUSTDOCFLAGS=--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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+b6ae10aa7319b7ebb6c7b3331dd71a9d6c9c5b4b" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] e82cb21f90d793abe4e3c5d263d4b062bfa64d93a6f6159d558355a451197f4b [INFO] running `Command { std: "docker" "start" "-a" "e82cb21f90d793abe4e3c5d263d4b062bfa64d93a6f6159d558355a451197f4b", kill_on_drop: false }` [INFO] [stderr] Compiling quick-error v1.2.3 [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 329 - pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] 329 + pub fn spawn(self: &Arc, fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:344:52 [INFO] [stdout] | [INFO] [stdout] 344 | pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 344 - pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 344 + pub fn spawn_unpin(self: &Arc, fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:379:52 [INFO] [stdout] | [INFO] [stdout] 379 | pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 379 - pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] 379 + pub fn block_on(self: &Arc, fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:398:19 [INFO] [stdout] | [INFO] [stdout] 398 | fut: impl (Future) + Unpin + 'static, [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 398 - fut: impl (Future) + Unpin + 'static, [INFO] [stdout] 398 + fut: impl Future + Unpin + 'static, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:519:24 [INFO] [stdout] | [INFO] [stdout] 519 | pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 519 - pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] 519 + pub fn spawn(fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:536:30 [INFO] [stdout] | [INFO] [stdout] 536 | pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 536 - pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 536 + pub fn spawn_unpin(fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling getrandom v0.3.3 [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:584:30 [INFO] [stdout] | [INFO] [stdout] 584 | pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 584 - pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] 584 + pub fn block_on(fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling wait-timeout v0.2.1 [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:602:40 [INFO] [stdout] | [INFO] [stdout] 602 | pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 602 - pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] 602 + pub fn block_on_unpin(mut fut: impl Future + Unpin + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling tempfile v3.20.0 [INFO] [stderr] Compiling rusty-fork v0.3.0 [INFO] [stderr] Compiling safina v0.7.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:329:46 [INFO] [stdout] | [INFO] [stdout] 329 | pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 329 - pub fn spawn(self: &Arc, fut: impl (Future) + Send + 'static) { [INFO] [stdout] 329 + pub fn spawn(self: &Arc, fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:344:52 [INFO] [stdout] | [INFO] [stdout] 344 | pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 344 - pub fn spawn_unpin(self: &Arc, fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 344 + pub fn spawn_unpin(self: &Arc, fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:379:52 [INFO] [stdout] | [INFO] [stdout] 379 | pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 379 - pub fn block_on(self: &Arc, fut: impl (Future) + 'static) -> R { [INFO] [stdout] 379 + pub fn block_on(self: &Arc, fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:398:19 [INFO] [stdout] | [INFO] [stdout] 398 | fut: impl (Future) + Unpin + 'static, [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 398 - fut: impl (Future) + Unpin + 'static, [INFO] [stdout] 398 + fut: impl Future + Unpin + 'static, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:519:24 [INFO] [stdout] | [INFO] [stdout] 519 | pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 519 - pub fn spawn(fut: impl (Future) + Send + 'static) { [INFO] [stdout] 519 + pub fn spawn(fut: impl Future + Send + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:536:30 [INFO] [stdout] | [INFO] [stdout] 536 | pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 536 - pub fn spawn_unpin(fut: impl (Future) + Send + Unpin + 'static) { [INFO] [stdout] 536 + pub fn spawn_unpin(fut: impl Future + Send + Unpin + 'static) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:584:30 [INFO] [stdout] | [INFO] [stdout] 584 | pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 584 - pub fn block_on(fut: impl (Future) + 'static) -> R { [INFO] [stdout] 584 + pub fn block_on(fut: impl Future + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/executor.rs:602:40 [INFO] [stdout] | [INFO] [stdout] 602 | pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 602 - pub fn block_on_unpin(mut fut: impl (Future) + Unpin + 'static) -> R { [INFO] [stdout] 602 + pub fn block_on_unpin(mut fut: impl Future + Unpin + 'static) -> R { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::threadpool::INTERNAL_MAX_THREADS` [INFO] [stdout] --> tests/threadpool_sequential_test.rs:3:26 [INFO] [stdout] | [INFO] [stdout] 3 | use safina::threadpool::{INTERNAL_MAX_THREADS, NewThreadPoolError, ThreadPool, TryScheduleError}; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^ no `INTERNAL_MAX_THREADS` in `threadpool` [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/threadpool/mod.rs:99:12 [INFO] [stdout] | [INFO] [stdout] 97 | #[cfg(feature = "testing")] [INFO] [stdout] | ------------------- the item is gated behind the `testing` feature [INFO] [stdout] 98 | #[doc(hidden)] [INFO] [stdout] 99 | pub static INTERNAL_MAX_THREADS: core::sync::atomic::AtomicUsize = [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/sync_mutex_test.rs:4:5 [INFO] [stdout] | [INFO] [stdout] 4 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/sync_channel_test.rs:4:5 [INFO] [stdout] | [INFO] [stdout] 4 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error[E0599]: no method named `num_live_threads_fn` found for struct `ThreadPool` in the current scope [INFO] [stdout] --> tests/threadpool_sequential_test.rs:125:36 [INFO] [stdout] | [INFO] [stdout] 125 | let num_live_threads_fn = pool.num_live_threads_fn(); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] help: there is a method `num_live_threads` with a similar name [INFO] [stdout] | [INFO] [stdout] 125 - let num_live_threads_fn = pool.num_live_threads_fn(); [INFO] [stdout] 125 + let num_live_threads_fn = pool.num_live_threads(); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] Some errors have detailed explanations: E0432, E0599. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "threadpool_sequential_test") due to 2 previous errors [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/async_test_test.rs:1:5 [INFO] [stdout] | [INFO] [stdout] 1 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "sync_mutex_test") due to 1 previous error [INFO] [stdout] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/net_tcp_stream_test.rs:3:5 [INFO] [stdout] | [INFO] [stdout] 3 | use safina::async_test; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^ no `async_test` in the root [INFO] [stdout] | [INFO] [stdout] note: found an item that was configured out [INFO] [stdout] --> /opt/rustwide/workdir/src/lib.rs:169:24 [INFO] [stdout] | [INFO] [stdout] 168 | #[cfg(feature = "async_test")] [INFO] [stdout] | ---------------------- the item is gated behind the `async_test` feature [INFO] [stdout] 169 | pub use safina_macros::async_test; [INFO] [stdout] | ^^^^^^^^^^ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "async_test_test") due to 1 previous error [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "sync_channel_test") due to 1 previous error [INFO] [stderr] error: could not compile `safina` (test "net_tcp_stream_test") due to 1 previous error [INFO] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "e82cb21f90d793abe4e3c5d263d4b062bfa64d93a6f6159d558355a451197f4b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e82cb21f90d793abe4e3c5d263d4b062bfa64d93a6f6159d558355a451197f4b", kill_on_drop: false }` [INFO] [stdout] e82cb21f90d793abe4e3c5d263d4b062bfa64d93a6f6159d558355a451197f4b