[INFO] fetching crate intcode 0.3.2...
[INFO] testing intcode-0.3.2 against master#c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38 for pr-146098-7
[INFO] extracting crate intcode 0.3.2 into /workspace/builds/worker-3-tc1/source
[INFO] started tweaking crates.io crate intcode 0.3.2
[INFO] finished tweaking crates.io crate intcode 0.3.2
[INFO] tweaked toml for crates.io crate intcode 0.3.2 written to /workspace/builds/worker-3-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate intcode 0.3.2 on toolchain c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] 359556225af2a2dd123cc1a4fee9d3999273c8d79c92a69191662e29719aaec2
[INFO] running `Command { std: "docker" "start" "-a" "359556225af2a2dd123cc1a4fee9d3999273c8d79c92a69191662e29719aaec2", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "359556225af2a2dd123cc1a4fee9d3999273c8d79c92a69191662e29719aaec2", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "359556225af2a2dd123cc1a4fee9d3999273c8d79c92a69191662e29719aaec2", kill_on_drop: false }`
[INFO] [stdout] 359556225af2a2dd123cc1a4fee9d3999273c8d79c92a69191662e29719aaec2
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 306b80ca010501282f4f7a2ac756949f061e823027e7c7a3b76db0908855c21f
[INFO] running `Command { std: "docker" "start" "-a" "306b80ca010501282f4f7a2ac756949f061e823027e7c7a3b76db0908855c21f", kill_on_drop: false }`
[INFO] [stderr]    Compiling intcode v0.3.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:148:62
[INFO] [stdout]     |
[INFO] [stdout] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &i64> {
[INFO] [stdout]     |                             -- the lifetime is named here    ^^^^ the same lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &'a i64> {
[INFO] [stdout]     |                                                               ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.27s
[INFO] running `Command { std: "docker" "inspect" "306b80ca010501282f4f7a2ac756949f061e823027e7c7a3b76db0908855c21f", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "306b80ca010501282f4f7a2ac756949f061e823027e7c7a3b76db0908855c21f", kill_on_drop: false }`
[INFO] [stdout] 306b80ca010501282f4f7a2ac756949f061e823027e7c7a3b76db0908855c21f
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 44883b3802ef8e36aec5d5288c899015e18c1047b8a1635498020dac35211a3c
[INFO] running `Command { std: "docker" "start" "-a" "44883b3802ef8e36aec5d5288c899015e18c1047b8a1635498020dac35211a3c", kill_on_drop: false }`
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:148:62
[INFO] [stdout]     |
[INFO] [stdout] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &i64> {
[INFO] [stdout]     |                             -- the lifetime is named here    ^^^^ the same lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &'a i64> {
[INFO] [stdout]     |                                                               ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling intcode v0.3.2 (/opt/rustwide/workdir)
[INFO] [stdout] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stdout]    --> src/lib.rs:148:62
[INFO] [stdout]     |
[INFO] [stdout] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &i64> {
[INFO] [stdout]     |                             -- the lifetime is named here    ^^^^ the same lifetime is elided here
[INFO] [stdout]     |
[INFO] [stdout]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stdout]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stdout] help: consistently use `'a`
[INFO] [stdout]     |
[INFO] [stdout] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &'a i64> {
[INFO] [stdout]     |                                                               ++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.51s
[INFO] running `Command { std: "docker" "inspect" "44883b3802ef8e36aec5d5288c899015e18c1047b8a1635498020dac35211a3c", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "44883b3802ef8e36aec5d5288c899015e18c1047b8a1635498020dac35211a3c", kill_on_drop: false }`
[INFO] [stdout] 44883b3802ef8e36aec5d5288c899015e18c1047b8a1635498020dac35211a3c
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+c90bcb9571b7aab0d8beaa2ce8a998ffaf079d38" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 2d2aecb93bfd7a85a1c428de54e767bb7a6e524a7a366819321fc9ec922b3a3d
[INFO] running `Command { std: "docker" "start" "-a" "2d2aecb93bfd7a85a1c428de54e767bb7a6e524a7a366819321fc9ec922b3a3d", kill_on_drop: false }`
[INFO] [stderr] warning: eliding a lifetime that's named elsewhere is confusing
[INFO] [stderr]    --> src/lib.rs:148:62
[INFO] [stderr]     |
[INFO] [stderr] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &i64> {
[INFO] [stderr]     |                             -- the lifetime is named here    ^^^^ the same lifetime is elided here
[INFO] [stderr]     |
[INFO] [stderr]     = help: the same lifetime is referred to in inconsistent ways, making the signature confusing
[INFO] [stderr]     = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default
[INFO] [stderr] help: consistently use `'a`
[INFO] [stderr]     |
[INFO] [stderr] 148 |     pub fn iter_output<'a>(&'a self) -> impl Iterator<Item = &'a i64> {
[INFO] [stderr]     |                                                               ++
[INFO] [stderr] 
[INFO] [stderr] warning: `intcode` (lib) generated 1 warning (run `cargo fix --lib -p intcode` to apply 1 suggestion)
[INFO] [stderr] warning: `intcode` (lib test) generated 1 warning (1 duplicate)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.04s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/intcode-c5f489744b794721)
[INFO] [stdout] 
[INFO] [stdout] running 11 tests
[INFO] [stdout] test test::given_example_day2_1 ... ok
[INFO] [stdout] test test::mess_with_memory ... ok
[INFO] [stdout] test test::input_output ... ok
[INFO] [stdout] test test::given_example_day2_2 ... ok
[INFO] [stdout] test test::next_output ... ok
[INFO] [stdout] test test::given_examples_day5_2_comp ... ok
[INFO] [stdout] test test::opcode_based_on_input ... ok
[INFO] [stdout] test test::parse_parameter_mode ... ok
[INFO] [stdout] test test::parse_opcode ... ok
[INFO] [stdout] test test::run_after_halt ... ok
[INFO] [stdout] test test::test_given_examples_day5_2_jump ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 11 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
[INFO] [stdout] 
[INFO] [stderr]    Doc-tests intcode
[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" "2d2aecb93bfd7a85a1c428de54e767bb7a6e524a7a366819321fc9ec922b3a3d", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "2d2aecb93bfd7a85a1c428de54e767bb7a6e524a7a366819321fc9ec922b3a3d", kill_on_drop: false }`
[INFO] [stdout] 2d2aecb93bfd7a85a1c428de54e767bb7a6e524a7a366819321fc9ec922b3a3d
