[INFO] updating cached repository https://github.com/Gipphe/advent-of-code-2017 [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/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] 84c64926d4539c8632fe0b293c41c29fa4a5ffd3 [INFO] testing Gipphe/advent-of-code-2017 against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2FGipphe%2Fadvent-of-code-2017" "work/builds/worker-9/source"` [INFO] [stderr] Cloning into 'work/builds/worker-9/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/Gipphe/advent-of-code-2017 on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/Gipphe/advent-of-code-2017 [INFO] finished tweaking git repo https://github.com/Gipphe/advent-of-code-2017 [INFO] tweaked toml for git repo https://github.com/Gipphe/advent-of-code-2017 written to work/builds/worker-9/source/Cargo.toml [INFO] crate git repo https://github.com/Gipphe/advent-of-code-2017 already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-9/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-9/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-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" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] 738ceaf099228804d7e28a1a96927e8d5943e96e52f282831393421dc7f6fee1 [INFO] running `"docker" "start" "-a" "738ceaf099228804d7e28a1a96927e8d5943e96e52f282831393421dc7f6fee1"` [INFO] [stderr] Compiling regex v0.2.10 [INFO] [stderr] Compiling error-chain v0.11.0 [INFO] [stderr] Compiling advent-of-code-2017 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/day_7/mod.rs:24:5 [INFO] [stderr] | [INFO] [stderr] 24 | / lazy_static! { [INFO] [stderr] 25 | | static ref CHILDREN: Regex = Regex::new(r"-> (?P.+)$").unwrap(); [INFO] [stderr] 26 | | } [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/day_7/mod.rs:39:5 [INFO] [stderr] | [INFO] [stderr] 39 | / lazy_static! { [INFO] [stderr] 40 | | static ref NAME: Regex = Regex::new(r"^(\w+)").unwrap(); [INFO] [stderr] 41 | | } [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: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/day_7/mod.rs:83:5 [INFO] [stderr] | [INFO] [stderr] 83 | / lazy_static! { [INFO] [stderr] 84 | | static ref NAME_AND_WEIGHT: Regex = Regex::new(r"^(?P\w+) \((?P\d+)\)").unwrap(); [INFO] [stderr] 85 | | static ref CHILDREN: Regex = Regex::new(r"-> (?P.+)$").unwrap(); [INFO] [stderr] 86 | | } [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: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/day_7/mod.rs:83:5 [INFO] [stderr] | [INFO] [stderr] 83 | / lazy_static! { [INFO] [stderr] 84 | | static ref NAME_AND_WEIGHT: Regex = Regex::new(r"^(?P\w+) \((?P\d+)\)").unwrap(); [INFO] [stderr] 85 | | static ref CHILDREN: Regex = Regex::new(r"-> (?P.+)$").unwrap(); [INFO] [stderr] 86 | | } [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: unused variable: `child` [INFO] [stderr] --> src/day_7/mod.rs:135:9 [INFO] [stderr] | [INFO] [stderr] 135 | for child in root.children { [INFO] [stderr] | ^^^^^ help: consider prefixing with an underscore: `_child` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: method is never used: `sum_weight` [INFO] [stderr] --> src/day_7/mod.rs:14:5 [INFO] [stderr] | [INFO] [stderr] 14 | fn sum_weight(&self) -> u32 { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: function is never used: `find_wrong_weight` [INFO] [stderr] --> src/day_7/mod.rs:134:1 [INFO] [stderr] | [INFO] [stderr] 134 | fn find_wrong_weight(root: Program) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 5.31s [INFO] running `"docker" "inspect" "738ceaf099228804d7e28a1a96927e8d5943e96e52f282831393421dc7f6fee1"` [INFO] running `"docker" "rm" "-f" "738ceaf099228804d7e28a1a96927e8d5943e96e52f282831393421dc7f6fee1"` [INFO] [stdout] 738ceaf099228804d7e28a1a96927e8d5943e96e52f282831393421dc7f6fee1 [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-9/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-9/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-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" "+beta-2019-09-28" "test" "--frozen" "--no-run"` [INFO] [stdout] 2c05cc7c885dd3273ad58faafa7d5f9b79f9452ed1e7c7a9612d1c64911618c6 [INFO] running `"docker" "start" "-a" "2c05cc7c885dd3273ad58faafa7d5f9b79f9452ed1e7c7a9612d1c64911618c6"` [INFO] [stderr] Compiling advent-of-code-2017 v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/day_7/mod.rs:24:5 [INFO] [stderr] | [INFO] [stderr] 24 | / lazy_static! { [INFO] [stderr] 25 | | static ref CHILDREN: Regex = Regex::new(r"-> (?P.+)$").unwrap(); [INFO] [stderr] 26 | | } [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/day_7/mod.rs:39:5 [INFO] [stderr] | [INFO] [stderr] 39 | / lazy_static! { [INFO] [stderr] 40 | | static ref NAME: Regex = Regex::new(r"^(\w+)").unwrap(); [INFO] [stderr] 41 | | } [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: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/day_7/mod.rs:83:5 [INFO] [stderr] | [INFO] [stderr] 83 | / lazy_static! { [INFO] [stderr] 84 | | static ref NAME_AND_WEIGHT: Regex = Regex::new(r"^(?P\w+) \((?P\d+)\)").unwrap(); [INFO] [stderr] 85 | | static ref CHILDREN: Regex = Regex::new(r"-> (?P.+)$").unwrap(); [INFO] [stderr] 86 | | } [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: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/day_7/mod.rs:83:5 [INFO] [stderr] | [INFO] [stderr] 83 | / lazy_static! { [INFO] [stderr] 84 | | static ref NAME_AND_WEIGHT: Regex = Regex::new(r"^(?P\w+) \((?P\d+)\)").unwrap(); [INFO] [stderr] 85 | | static ref CHILDREN: Regex = Regex::new(r"-> (?P.+)$").unwrap(); [INFO] [stderr] 86 | | } [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: unused variable: `child` [INFO] [stderr] --> src/day_7/mod.rs:135:9 [INFO] [stderr] | [INFO] [stderr] 135 | for child in root.children { [INFO] [stderr] | ^^^^^ help: consider prefixing with an underscore: `_child` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_variables)]` on by default [INFO] [stderr] [INFO] [stderr] warning: method is never used: `sum_weight` [INFO] [stderr] --> src/day_7/mod.rs:14:5 [INFO] [stderr] | [INFO] [stderr] 14 | fn sum_weight(&self) -> u32 { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(dead_code)]` on by default [INFO] [stderr] [INFO] [stderr] warning: function is never used: `find_wrong_weight` [INFO] [stderr] --> src/day_7/mod.rs:134:1 [INFO] [stderr] | [INFO] [stderr] 134 | fn find_wrong_weight(root: Program) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 3.97s [INFO] running `"docker" "inspect" "2c05cc7c885dd3273ad58faafa7d5f9b79f9452ed1e7c7a9612d1c64911618c6"` [INFO] running `"docker" "rm" "-f" "2c05cc7c885dd3273ad58faafa7d5f9b79f9452ed1e7c7a9612d1c64911618c6"` [INFO] [stdout] 2c05cc7c885dd3273ad58faafa7d5f9b79f9452ed1e7c7a9612d1c64911618c6 [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-9/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-9/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-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" "+beta-2019-09-28" "test" "--frozen"` [INFO] [stdout] e6beab35c39d7745fc298e0536f0a839c30c33a272ef5b3a4da8075718f67b17 [INFO] running `"docker" "start" "-a" "e6beab35c39d7745fc298e0536f0a839c30c33a272ef5b3a4da8075718f67b17"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.13s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/advent_of_code_2017-8f63d07fd2a852c3 [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" "e6beab35c39d7745fc298e0536f0a839c30c33a272ef5b3a4da8075718f67b17"` [INFO] running `"docker" "rm" "-f" "e6beab35c39d7745fc298e0536f0a839c30c33a272ef5b3a4da8075718f67b17"` [INFO] [stdout] e6beab35c39d7745fc298e0536f0a839c30c33a272ef5b3a4da8075718f67b17