[INFO] cloning repository https://github.com/sbwtw/distcc_scan [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/sbwtw/distcc_scan" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsbwtw%2Fdistcc_scan"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsbwtw%2Fdistcc_scan'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 998e84e6b56fdc10962bb29424eb65522635be97 [INFO] checking sbwtw/distcc_scan against try#ea663bba38739867a4b75ac820991b4f5d093c3b for pr-62262-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fsbwtw%2Fdistcc_scan" "/workspace/builds/worker-0/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-0/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/sbwtw/distcc_scan on toolchain ea663bba38739867a4b75ac820991b4f5d093c3b [INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/sbwtw/distcc_scan [INFO] finished tweaking git repo https://github.com/sbwtw/distcc_scan [INFO] tweaked toml for git repo https://github.com/sbwtw/distcc_scan written to /workspace/builds/worker-0/source/Cargo.toml [INFO] crate git repo https://github.com/sbwtw/distcc_scan already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0/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" "+ea663bba38739867a4b75ac820991b4f5d093c3b" "check" "--frozen" "--all" "--all-targets"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 6bd8a4fd72dda3c9443a83039356ea7ac7e93768d36f62d9d3b724aa53be44e8 [INFO] running `"docker" "start" "-a" "6bd8a4fd72dda3c9443a83039356ea7ac7e93768d36f62d9d3b724aa53be44e8"` [INFO] [stderr] Checking libc v0.2.19 [INFO] [stderr] Compiling winapi-build v0.1.1 [INFO] [stderr] Checking winapi v0.2.8 [INFO] [stderr] Checking utf8-ranges v0.1.3 [INFO] [stderr] Checking regex-syntax v0.3.9 [INFO] [stderr] Checking vec_map v0.6.0 [INFO] [stderr] Checking unicode-segmentation v0.1.3 [INFO] [stderr] Checking unicode-width v0.1.4 [INFO] [stderr] Checking ansi_term v0.9.0 [INFO] [stderr] Checking strsim v0.5.2 [INFO] [stderr] Checking bitflags v0.7.0 [INFO] [stderr] Checking log v0.3.6 [INFO] [stderr] Checking lazy_static v0.2.2 [INFO] [stderr] Compiling kernel32-sys v0.2.2 [INFO] [stderr] Checking memchr v0.1.11 [INFO] [stderr] Checking term_size v0.2.1 [INFO] [stderr] Checking minilzo-sys v0.1.0 [INFO] [stderr] Checking clap v2.19.3 [INFO] [stderr] Checking thread-id v2.0.0 [INFO] [stderr] Checking aho-corasick v0.5.3 [INFO] [stderr] Checking minilzo v0.1.0 [INFO] [stderr] Checking thread_local v0.2.7 [INFO] [stderr] Checking regex v0.1.80 [INFO] [stderr] Checking env_logger v0.3.5 [INFO] [stderr] Checking distcc_finder v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:154:18 [INFO] [stderr] | [INFO] [stderr] 154 | c @ 0...9 => r.insert(0, (b'0' + c) as char), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:155:19 [INFO] [stderr] | [INFO] [stderr] 155 | c @ 10...15 => r.insert(0, (b'a' + c - 10) as char), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:178:17 [INFO] [stderr] | [INFO] [stderr] 178 | n @ &b'0'...b'9' => (n - b'0') as usize, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `..=` for an inclusive range: `&(b'0'..=b'9')` [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:179:17 [INFO] [stderr] | [INFO] [stderr] 179 | n @ &b'a'...b'f' => (n - b'a') as usize + 10, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `..=` for an inclusive range: `&(b'a'..=b'f')` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/main.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | / lazy_static!{ [INFO] [stderr] 20 | | static ref TEST_PACKAGE: Vec = { [INFO] [stderr] 21 | | let head = b"DIST00000002ARGC00000005ARGV00000003g++ARGV00000002-cARGV00000002-oARGV00000001aARGV000000051.cppDOTI"; [INFO] [stderr] 22 | | let data = b"\n int b(){ int a=0; return a;} \n\n int c () { int aaa=0; return aaa;} /* aaa aa aa aa */"; [INFO] [stderr] ... | [INFO] [stderr] 32 | | }; [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/main.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | / lazy_static!{ [INFO] [stderr] 20 | | static ref TEST_PACKAGE: Vec = { [INFO] [stderr] 21 | | let head = b"DIST00000002ARGC00000005ARGV00000003g++ARGV00000002-cARGV00000002-oARGV00000001aARGV000000051.cppDOTI"; [INFO] [stderr] 22 | | let data = b"\n int b(){ int a=0; return a;} \n\n int c () { int aaa=0; return aaa;} /* aaa aa aa aa */"; [INFO] [stderr] ... | [INFO] [stderr] 32 | | }; [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:154:18 [INFO] [stderr] | [INFO] [stderr] 154 | c @ 0...9 => r.insert(0, (b'0' + c) as char), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:155:19 [INFO] [stderr] | [INFO] [stderr] 155 | c @ 10...15 => r.insert(0, (b'a' + c - 10) as char), [INFO] [stderr] | ^^^ help: use `..=` for an inclusive range [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:178:17 [INFO] [stderr] | [INFO] [stderr] 178 | n @ &b'0'...b'9' => (n - b'0') as usize, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `..=` for an inclusive range: `&(b'0'..=b'9')` [INFO] [stderr] [INFO] [stderr] warning: `...` range patterns are deprecated [INFO] [stderr] --> src/main.rs:179:17 [INFO] [stderr] | [INFO] [stderr] 179 | n @ &b'a'...b'f' => (n - b'a') as usize + 10, [INFO] [stderr] | ^^^^^^^^^^^^ help: use `..=` for an inclusive range: `&(b'a'..=b'f')` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/main.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | / lazy_static!{ [INFO] [stderr] 20 | | static ref TEST_PACKAGE: Vec = { [INFO] [stderr] 21 | | let head = b"DIST00000002ARGC00000005ARGV00000003g++ARGV00000002-cARGV00000002-oARGV00000001aARGV000000051.cppDOTI"; [INFO] [stderr] 22 | | let data = b"\n int b(){ int a=0; return a;} \n\n int c () { int aaa=0; return aaa;} /* aaa aa aa aa */"; [INFO] [stderr] ... | [INFO] [stderr] 32 | | }; [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/main.rs:19:1 [INFO] [stderr] | [INFO] [stderr] 19 | / lazy_static!{ [INFO] [stderr] 20 | | static ref TEST_PACKAGE: Vec = { [INFO] [stderr] 21 | | let head = b"DIST00000002ARGC00000005ARGV00000003g++ARGV00000002-cARGV00000002-oARGV00000001aARGV000000051.cppDOTI"; [INFO] [stderr] 22 | | let data = b"\n int b(){ int a=0; return a;} \n\n int c () { int aaa=0; return aaa;} /* aaa aa aa aa */"; [INFO] [stderr] ... | [INFO] [stderr] 32 | | }; [INFO] [stderr] 33 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: field is never used: `version` [INFO] [stderr] --> src/main.rs:56:5 [INFO] [stderr] | [INFO] [stderr] 56 | version: usize, [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant is never constructed: `Content` [INFO] [stderr] --> src/main.rs:66:5 [INFO] [stderr] | [INFO] [stderr] 66 | Content, [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] [INFO] [stderr] warning: field is never used: `version` [INFO] [stderr] --> src/main.rs:56:5 [INFO] [stderr] | [INFO] [stderr] 56 | version: usize, [INFO] [stderr] | ^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: variant is never constructed: `Content` [INFO] [stderr] --> src/main.rs:66:5 [INFO] [stderr] | [INFO] [stderr] 66 | Content, [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 11.43s [INFO] running `"docker" "inspect" "6bd8a4fd72dda3c9443a83039356ea7ac7e93768d36f62d9d3b724aa53be44e8"` [INFO] running `"docker" "rm" "-f" "6bd8a4fd72dda3c9443a83039356ea7ac7e93768d36f62d9d3b724aa53be44e8"` [INFO] [stdout] 6bd8a4fd72dda3c9443a83039356ea7ac7e93768d36f62d9d3b724aa53be44e8