[INFO] fetching crate text_analyzer 0.1.1... [INFO] testing text_analyzer-0.1.1 against try#2440211fe03bc45c89b6dc1a3df18382ce91e32b for pr-146098-1 [INFO] extracting crate text_analyzer 0.1.1 into /workspace/builds/worker-2-tc2/source [INFO] started tweaking crates.io crate text_analyzer 0.1.1 [INFO] finished tweaking crates.io crate text_analyzer 0.1.1 [INFO] tweaked toml for crates.io crate text_analyzer 0.1.1 written to /workspace/builds/worker-2-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate text_analyzer 0.1.1 on toolchain 2440211fe03bc45c89b6dc1a3df18382ce91e32b [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate text_analyzer 0.1.1 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" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-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" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] a27b21473ccac1e19e60b787062cf559763a9ca332b3c9a2fd55dc48dd83142e [INFO] running `Command { std: "docker" "start" "-a" "a27b21473ccac1e19e60b787062cf559763a9ca332b3c9a2fd55dc48dd83142e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "a27b21473ccac1e19e60b787062cf559763a9ca332b3c9a2fd55dc48dd83142e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a27b21473ccac1e19e60b787062cf559763a9ca332b3c9a2fd55dc48dd83142e", kill_on_drop: false }` [INFO] [stdout] a27b21473ccac1e19e60b787062cf559763a9ca332b3c9a2fd55dc48dd83142e [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-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" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] ea7df6cd53fd66b5af190a1b01ea4e6ea10817fdb6ac75bc98cf62b7037e245d [INFO] running `Command { std: "docker" "start" "-a" "ea7df6cd53fd66b5af190a1b01ea4e6ea10817fdb6ac75bc98cf62b7037e245d", kill_on_drop: false }` [INFO] [stderr] Compiling text_analyzer v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/main.rs:50:24 [INFO] [stdout] | [INFO] [stdout] 50 | Some(x) => (array_pos = *x), [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] 50 - Some(x) => (array_pos = *x), [INFO] [stdout] 50 + Some(x) => array_pos = *x, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/main.rs:53:33 [INFO] [stdout] | [INFO] [stdout] 53 | Some(_x) => (return Err(String::from("Char map inserted the same error twice!"))), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 53 - Some(_x) => (return Err(String::from("Char map inserted the same error twice!"))), [INFO] [stdout] 53 + Some(_x) => return Err(String::from("Char map inserted the same error twice!")), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.63s [INFO] running `Command { std: "docker" "inspect" "ea7df6cd53fd66b5af190a1b01ea4e6ea10817fdb6ac75bc98cf62b7037e245d", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ea7df6cd53fd66b5af190a1b01ea4e6ea10817fdb6ac75bc98cf62b7037e245d", kill_on_drop: false }` [INFO] [stdout] ea7df6cd53fd66b5af190a1b01ea4e6ea10817fdb6ac75bc98cf62b7037e245d [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-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" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] ea9ff0ddda2333cb56c2ad3c4378e1b58ef20d502195ad510be055f3c168fdf9 [INFO] running `Command { std: "docker" "start" "-a" "ea9ff0ddda2333cb56c2ad3c4378e1b58ef20d502195ad510be055f3c168fdf9", kill_on_drop: false }` [INFO] [stderr] Compiling text_analyzer v0.1.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/main.rs:50:24 [INFO] [stdout] | [INFO] [stdout] 50 | Some(x) => (array_pos = *x), [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] 50 - Some(x) => (array_pos = *x), [INFO] [stdout] 50 + Some(x) => array_pos = *x, [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/main.rs:53:33 [INFO] [stdout] | [INFO] [stdout] 53 | Some(_x) => (return Err(String::from("Char map inserted the same error twice!"))), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 53 - Some(_x) => (return Err(String::from("Char map inserted the same error twice!"))), [INFO] [stdout] 53 + Some(_x) => return Err(String::from("Char map inserted the same error twice!")), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.37s [INFO] running `Command { std: "docker" "inspect" "ea9ff0ddda2333cb56c2ad3c4378e1b58ef20d502195ad510be055f3c168fdf9", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ea9ff0ddda2333cb56c2ad3c4378e1b58ef20d502195ad510be055f3c168fdf9", kill_on_drop: false }` [INFO] [stdout] ea9ff0ddda2333cb56c2ad3c4378e1b58ef20d502195ad510be055f3c168fdf9 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-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" "+2440211fe03bc45c89b6dc1a3df18382ce91e32b" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] fe4162cd92183d4a57784dd61f2f7c33aa38c5b9f0eb40feee116cfad17efb2b [INFO] running `Command { std: "docker" "start" "-a" "fe4162cd92183d4a57784dd61f2f7c33aa38c5b9f0eb40feee116cfad17efb2b", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around match arm expression [INFO] [stderr] --> src/main.rs:50:24 [INFO] [stderr] | [INFO] [stderr] 50 | Some(x) => (array_pos = *x), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` (part of `#[warn(unused)]`) on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 50 - Some(x) => (array_pos = *x), [INFO] [stderr] 50 + Some(x) => array_pos = *x, [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around match arm expression [INFO] [stderr] --> src/main.rs:53:33 [INFO] [stderr] | [INFO] [stderr] 53 | Some(_x) => (return Err(String::from("Char map inserted the same error twice!"))), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 53 - Some(_x) => (return Err(String::from("Char map inserted the same error twice!"))), [INFO] [stderr] 53 + Some(_x) => return Err(String::from("Char map inserted the same error twice!")), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `text_analyzer` (bin "text_analyzer" test) generated 2 warnings (run `cargo fix --bin "text_analyzer" --tests` to apply 2 suggestions) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.05s [INFO] [stderr] Running unittests src/main.rs (/opt/rustwide/target/debug/deps/text_analyzer-1dbfb64f10eb3dec) [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] running `Command { std: "docker" "inspect" "fe4162cd92183d4a57784dd61f2f7c33aa38c5b9f0eb40feee116cfad17efb2b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "fe4162cd92183d4a57784dd61f2f7c33aa38c5b9f0eb40feee116cfad17efb2b", kill_on_drop: false }` [INFO] [stdout] fe4162cd92183d4a57784dd61f2f7c33aa38c5b9f0eb40feee116cfad17efb2b