[INFO] updating cached repository https://github.com/fcsonline/trawler [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 4360162f2d7a64e0b931dc238e6d00ec359e1ae3 [INFO] testing fcsonline/trawler against try#41997647ba6a77908f6ef64401414feb00bccf16 for pr-71274 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Ffcsonline%2Ftrawler" "/workspace/builds/worker-14/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-14/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/fcsonline/trawler on toolchain 41997647ba6a77908f6ef64401414feb00bccf16 [INFO] running `"/workspace/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/fcsonline/trawler [INFO] finished tweaking git repo https://github.com/fcsonline/trawler [INFO] tweaked toml for git repo https://github.com/fcsonline/trawler written to /workspace/builds/worker-14/source/Cargo.toml [INFO] crate git repo https://github.com/fcsonline/trawler already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/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" "MAP_USER_ID=0" "-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" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 276c909ae57258ce3e80dc5f65e64233636ef33199c01e9e61de438065b9f6ed [INFO] running `"docker" "start" "-a" "276c909ae57258ce3e80dc5f65e64233636ef33199c01e9e61de438065b9f6ed"` [INFO] [stderr] Compiling libc v0.2.45 [INFO] [stderr] Compiling semver-parser v0.7.0 [INFO] [stderr] Compiling rand_core v0.3.0 [INFO] [stderr] Compiling byteorder v1.2.7 [INFO] [stderr] Compiling owning_ref v0.4.0 [INFO] [stderr] Compiling log v0.4.6 [INFO] [stderr] Compiling crossbeam-utils v0.6.3 [INFO] [stderr] Compiling smallvec v0.6.7 [INFO] [stderr] Compiling lock_api v0.1.5 [INFO] [stderr] Compiling semver v0.9.0 [INFO] [stderr] Compiling rand_core v0.2.2 [INFO] [stderr] Compiling rustc_version v0.2.3 [INFO] [stderr] Compiling parking_lot_core v0.3.1 [INFO] [stderr] Compiling iovec v0.1.2 [INFO] [stderr] Compiling rand v0.5.5 [INFO] [stderr] Compiling net2 v0.2.33 [INFO] [stderr] Compiling num_cpus v1.9.0 [INFO] [stderr] Compiling inotify-sys v0.1.3 [INFO] [stderr] Compiling filetime v0.2.4 [INFO] [stderr] Compiling bytes v0.4.11 [INFO] [stderr] Compiling mio v0.6.16 [INFO] [stderr] Compiling tokio-io v0.1.10 [INFO] [stderr] Compiling mio-extras v2.0.5 [INFO] [stderr] Compiling parking_lot v0.6.4 [INFO] [stderr] Compiling tokio-reactor v0.1.7 [INFO] [stderr] Compiling inotify v0.6.1 [INFO] [stderr] Compiling notify v4.0.6 [INFO] [stderr] Compiling trawler v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib/catalog.rs:8:36 [INFO] [stderr] | [INFO] [stderr] 8 | pub steps: HashMap> [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Step` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib/catalog.rs:13:44 [INFO] [stderr] | [INFO] [stderr] 13 | let mut steps: HashMap> = HashMap::new(); [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Step` [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib/step.rs:4:59 [INFO] [stderr] | [INFO] [stderr] 4 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)>; [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/write.rs:18:59 [INFO] [stderr] | [INFO] [stderr] 18 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/hash.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/echo.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/reverse.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: 7 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 34.54s [INFO] running `"docker" "inspect" "276c909ae57258ce3e80dc5f65e64233636ef33199c01e9e61de438065b9f6ed"` [INFO] running `"docker" "rm" "-f" "276c909ae57258ce3e80dc5f65e64233636ef33199c01e9e61de438065b9f6ed"` [INFO] [stdout] 276c909ae57258ce3e80dc5f65e64233636ef33199c01e9e61de438065b9f6ed [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/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" "MAP_USER_ID=0" "-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" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "test" "--frozen" "--no-run"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] bca040bf8066c1221caa39af0e6569c501c866c623e805837a4a1fb872f3a12a [INFO] running `"docker" "start" "-a" "bca040bf8066c1221caa39af0e6569c501c866c623e805837a4a1fb872f3a12a"` [INFO] [stderr] Compiling trawler v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib/catalog.rs:8:36 [INFO] [stderr] | [INFO] [stderr] 8 | pub steps: HashMap> [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Step` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib/catalog.rs:13:44 [INFO] [stderr] | [INFO] [stderr] 13 | let mut steps: HashMap> = HashMap::new(); [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Step` [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib/step.rs:4:59 [INFO] [stderr] | [INFO] [stderr] 4 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)>; [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/write.rs:18:59 [INFO] [stderr] | [INFO] [stderr] 18 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/hash.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/echo.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/reverse.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: 7 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 1.31s [INFO] running `"docker" "inspect" "bca040bf8066c1221caa39af0e6569c501c866c623e805837a4a1fb872f3a12a"` [INFO] running `"docker" "rm" "-f" "bca040bf8066c1221caa39af0e6569c501c866c623e805837a4a1fb872f3a12a"` [INFO] [stdout] bca040bf8066c1221caa39af0e6569c501c866c623e805837a4a1fb872f3a12a [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/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" "MAP_USER_ID=0" "-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" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+41997647ba6a77908f6ef64401414feb00bccf16" "test" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] a55f0f59d4b7281c3c99239ad9d8e814290ad8f4449640d87650d41bc6fca65f [INFO] running `"docker" "start" "-a" "a55f0f59d4b7281c3c99239ad9d8e814290ad8f4449640d87650d41bc6fca65f"` [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib/catalog.rs:8:36 [INFO] [stderr] | [INFO] [stderr] 8 | pub steps: HashMap> [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Step` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib/catalog.rs:13:44 [INFO] [stderr] | [INFO] [stderr] 13 | let mut steps: HashMap> = HashMap::new(); [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Step` [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib/step.rs:4:59 [INFO] [stderr] | [INFO] [stderr] 4 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)>; [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/write.rs:18:59 [INFO] [stderr] | [INFO] [stderr] 18 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/hash.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/echo.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/steps/reverse.rs:16:59 [INFO] [stderr] | [INFO] [stderr] 16 | fn execute(&self, buffer: &Buffer) -> std::io::Result<(Buffer)> { [INFO] [stderr] | ^^^^^^^^ help: remove these parentheses [INFO] [stderr] [INFO] [stderr] warning: 7 warnings emitted [INFO] [stderr] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.14s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/trawler-b5dabb5085c3c4b4 [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 [INFO] [stdout] [INFO] running `"docker" "inspect" "a55f0f59d4b7281c3c99239ad9d8e814290ad8f4449640d87650d41bc6fca65f"` [INFO] running `"docker" "rm" "-f" "a55f0f59d4b7281c3c99239ad9d8e814290ad8f4449640d87650d41bc6fca65f"` [INFO] [stdout] a55f0f59d4b7281c3c99239ad9d8e814290ad8f4449640d87650d41bc6fca65f