[INFO] fetching crate safina 0.7.0... [INFO] testing safina-0.7.0 against try#b83b707f97d809763b7861afa7638871f3339a33 for pr-145838-1 [INFO] extracting crate safina 0.7.0 into /workspace/builds/worker-3-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-3-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate safina 0.7.0 on toolchain b83b707f97d809763b7861afa7638871f3339a33 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+b83b707f97d809763b7861afa7638871f3339a33" "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" "+b83b707f97d809763b7861afa7638871f3339a33" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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:7ad1b28ee6f5f7f699f6cf7015098d6ccdd96d6f2d78dd06228f5b4c9faf309c" "/opt/rustwide/cargo-home/bin/cargo" "+b83b707f97d809763b7861afa7638871f3339a33" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 2ca55777bb5521eebb491901f1339806c47ce6f6cbbd57c35f6595f1e8da67e4 [INFO] running `Command { std: "docker" "start" "-a" "2ca55777bb5521eebb491901f1339806c47ce6f6cbbd57c35f6595f1e8da67e4", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "2ca55777bb5521eebb491901f1339806c47ce6f6cbbd57c35f6595f1e8da67e4", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "2ca55777bb5521eebb491901f1339806c47ce6f6cbbd57c35f6595f1e8da67e4", kill_on_drop: false }` [INFO] [stdout] 2ca55777bb5521eebb491901f1339806c47ce6f6cbbd57c35f6595f1e8da67e4 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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:7ad1b28ee6f5f7f699f6cf7015098d6ccdd96d6f2d78dd06228f5b4c9faf309c" "/opt/rustwide/cargo-home/bin/cargo" "+b83b707f97d809763b7861afa7638871f3339a33" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 96f1601e8e7c1546cc1cb09a99680a2ff4664992282cd28b39bdcf4ce18113d8 [INFO] running `Command { std: "docker" "start" "-a" "96f1601e8e7c1546cc1cb09a99680a2ff4664992282cd28b39bdcf4ce18113d8", 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)]` (part of `#[warn(unused)]`) 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 0.88s [INFO] running `Command { std: "docker" "inspect" "96f1601e8e7c1546cc1cb09a99680a2ff4664992282cd28b39bdcf4ce18113d8", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "96f1601e8e7c1546cc1cb09a99680a2ff4664992282cd28b39bdcf4ce18113d8", kill_on_drop: false }` [INFO] [stdout] 96f1601e8e7c1546cc1cb09a99680a2ff4664992282cd28b39bdcf4ce18113d8 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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:7ad1b28ee6f5f7f699f6cf7015098d6ccdd96d6f2d78dd06228f5b4c9faf309c" "/opt/rustwide/cargo-home/bin/cargo" "+b83b707f97d809763b7861afa7638871f3339a33" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 31027cf0cd8bb53cb9445b3b1c4f72284ce66d84a197207b1625263e5fe33eaf [INFO] running `Command { std: "docker" "start" "-a" "31027cf0cd8bb53cb9445b3b1c4f72284ce66d84a197207b1625263e5fe33eaf", kill_on_drop: false }` [INFO] [stderr] Compiling once_cell v1.21.3 [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)]` (part of `#[warn(unused)]`) 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] [stderr] Compiling wait-timeout v0.2.1 [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] 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] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/net_tcp_listener_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] error[E0432]: unresolved import `safina::async_test` [INFO] [stdout] --> tests/select_test.rs:5:5 [INFO] [stdout] | [INFO] [stdout] 5 | 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] 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)]` (part of `#[warn(unused)]`) 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] For more information about this error, try `rustc --explain E0432`. [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] [stderr] error: could not compile `safina` (test "net_tcp_listener_test") due to 1 previous error [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [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] 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] 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] [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] Some errors have detailed explanations: E0432, E0599. [INFO] [stdout] [INFO] [stdout] For more information about an error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stdout] For more information about this 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] 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 "select_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] [stdout] For more information about this error, try `rustc --explain E0432`. [INFO] [stdout] [INFO] [stderr] error: could not compile `safina` (test "net_tcp_stream_test") due to 1 previous error [INFO] running `Command { std: "docker" "inspect" "31027cf0cd8bb53cb9445b3b1c4f72284ce66d84a197207b1625263e5fe33eaf", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "31027cf0cd8bb53cb9445b3b1c4f72284ce66d84a197207b1625263e5fe33eaf", kill_on_drop: false }` [INFO] [stdout] 31027cf0cd8bb53cb9445b3b1c4f72284ce66d84a197207b1625263e5fe33eaf