[INFO] updating cached repository samcrow/netcheck [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/samcrow/netcheck [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/samcrow/netcheck" "work/ex/clippy-test-run/sources/stable/gh/samcrow/netcheck"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable/gh/samcrow/netcheck'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/samcrow/netcheck" "work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/samcrow/netcheck"` [INFO] [stderr] Cloning into 'work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/samcrow/netcheck'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] b5c5e3fb05db37d5fdd7ab14abab7508926ae366 [INFO] sha for GitHub repo samcrow/netcheck: b5c5e3fb05db37d5fdd7ab14abab7508926ae366 [INFO] validating manifest of samcrow/netcheck on toolchain stable [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of samcrow/netcheck on toolchain stable+rustflags=-Dclippy::into_iter_on_array [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing samcrow/netcheck [INFO] finished frobbing samcrow/netcheck [INFO] frobbed toml for samcrow/netcheck written to work/ex/clippy-test-run/sources/stable/gh/samcrow/netcheck/Cargo.toml [INFO] started frobbing samcrow/netcheck [INFO] finished frobbing samcrow/netcheck [INFO] frobbed toml for samcrow/netcheck written to work/ex/clippy-test-run/sources/stable+rustflags=-Dclippy%3A%3Ainto_iter_on_array/gh/samcrow/netcheck/Cargo.toml [INFO] crate samcrow/netcheck has a lockfile. skipping [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+stable" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] linting samcrow/netcheck against stable for clippy-test-run [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/clippy-test-run/worker-2/stable:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/clippy-test-run/sources/stable/gh/samcrow/netcheck:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+stable" "clippy" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 53056ebefa89fc7405b3ba1c15404225e83ed7dba5859b4ed8f9f53352b4badb [INFO] running `"docker" "start" "-a" "53056ebefa89fc7405b3ba1c15404225e83ed7dba5859b4ed8f9f53352b4badb"` [INFO] [stderr] Compiling backtrace-sys v0.1.16 [INFO] [stderr] Checking iovec v0.1.1 [INFO] [stderr] Checking net2 v0.2.31 [INFO] [stderr] Checking rand v0.3.20 [INFO] [stderr] Checking time v0.1.39 [INFO] [stderr] Checking tokio-timer v0.1.2 [INFO] [stderr] Checking lazy-socket v0.2.1 [INFO] [stderr] Checking bytes v0.4.6 [INFO] [stderr] Checking mio v0.6.12 [INFO] [stderr] Checking chrono v0.4.0 [INFO] [stderr] Checking rusqlite v0.13.0 [INFO] [stderr] Checking tokio-io v0.1.4 [INFO] [stderr] Checking tokio-core v0.1.12 [INFO] [stderr] Checking backtrace v0.3.5 [INFO] [stderr] Checking error-chain v0.11.0 [INFO] [stderr] Checking tokio-ping v0.1.0 [INFO] [stderr] Checking netcheck v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: use of `ok_or` followed by a function call [INFO] [stderr] --> src/main.rs:84:10 [INFO] [stderr] | [INFO] [stderr] 84 | .ok_or(BoxErr::from("No IP address specified")) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `ok_or_else(|| BoxErr::from("No IP address specified"))` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::or_fun_call)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call [INFO] [stderr] [INFO] [stderr] warning: use of `ok_or` followed by a function call [INFO] [stderr] --> src/main.rs:87:10 [INFO] [stderr] | [INFO] [stderr] 87 | .ok_or(BoxErr::from("No database path specified")) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `ok_or_else(|| BoxErr::from("No database path specified"))` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call [INFO] [stderr] [INFO] [stderr] warning: use of `ok_or` followed by a function call [INFO] [stderr] --> src/main.rs:84:10 [INFO] [stderr] | [INFO] [stderr] 84 | .ok_or(BoxErr::from("No IP address specified")) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `ok_or_else(|| BoxErr::from("No IP address specified"))` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(clippy::or_fun_call)] on by default [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call [INFO] [stderr] [INFO] [stderr] warning: use of `ok_or` followed by a function call [INFO] [stderr] --> src/main.rs:87:10 [INFO] [stderr] | [INFO] [stderr] 87 | .ok_or(BoxErr::from("No database path specified")) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try this: `ok_or_else(|| BoxErr::from("No database path specified"))` [INFO] [stderr] | [INFO] [stderr] = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#or_fun_call [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 24.03s [INFO] running `"docker" "inspect" "53056ebefa89fc7405b3ba1c15404225e83ed7dba5859b4ed8f9f53352b4badb"` [INFO] running `"docker" "rm" "-f" "53056ebefa89fc7405b3ba1c15404225e83ed7dba5859b4ed8f9f53352b4badb"` [INFO] [stdout] 53056ebefa89fc7405b3ba1c15404225e83ed7dba5859b4ed8f9f53352b4badb