[INFO] fetching crate koto_bytecode 0.10.0... [INFO] testing koto_bytecode-0.10.0 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate koto_bytecode 0.10.0 into /workspace/builds/worker-105/source [INFO] validating manifest of crates.io crate koto_bytecode 0.10.0 on toolchain beta-2022-04-10 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate koto_bytecode 0.10.0 [INFO] finished tweaking crates.io crate koto_bytecode 0.10.0 [INFO] tweaked toml for crates.io crate koto_bytecode 0.10.0 written to /workspace/builds/worker-105/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 5049ca820f6640046c457a25ae08dc28e19d3f70a5d2d7c6da6c7ad0eba4c727 [INFO] running `Command { std: "docker" "start" "-a" "5049ca820f6640046c457a25ae08dc28e19d3f70a5d2d7c6da6c7ad0eba4c727", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "5049ca820f6640046c457a25ae08dc28e19d3f70a5d2d7c6da6c7ad0eba4c727", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5049ca820f6640046c457a25ae08dc28e19d3f70a5d2d7c6da6c7ad0eba4c727", kill_on_drop: false }` [INFO] [stdout] 5049ca820f6640046c457a25ae08dc28e19d3f70a5d2d7c6da6c7ad0eba4c727 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/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=warn" "-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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 010a9dc07a733d4cbf79dfa7b40f8c603bb221d247f410c2db033d4f4219a27e [INFO] running `Command { std: "docker" "start" "-a" "010a9dc07a733d4cbf79dfa7b40f8c603bb221d247f410c2db033d4f4219a27e", kill_on_drop: false }` [INFO] [stderr] Compiling unicode-width v0.1.9 [INFO] [stderr] Compiling dunce v1.0.2 [INFO] [stderr] Compiling koto_lexer v0.10.0 [INFO] [stderr] Compiling koto_parser v0.10.0 [INFO] [stderr] Compiling koto_bytecode v0.10.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/instruction_reader.rs:427:47 [INFO] [stdout] | [INFO] [stdout] 427 | Error { message } => unreachable!(message), [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 427 | Error { message } => unreachable!("{}", message), [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/instruction_reader.rs:512:47 [INFO] [stdout] | [INFO] [stdout] 512 | Error { message } => unreachable!(message), [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 512 | Error { message } => unreachable!("{}", message), [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 6.00s [INFO] running `Command { std: "docker" "inspect" "010a9dc07a733d4cbf79dfa7b40f8c603bb221d247f410c2db033d4f4219a27e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "010a9dc07a733d4cbf79dfa7b40f8c603bb221d247f410c2db033d4f4219a27e", kill_on_drop: false }` [INFO] [stdout] 010a9dc07a733d4cbf79dfa7b40f8c603bb221d247f410c2db033d4f4219a27e [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/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=warn" "-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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] e7608e65c297a80f6e2c52e6b941b7fd2fcdc2598a69eabedc332f4a89f7f44f [INFO] running `Command { std: "docker" "start" "-a" "e7608e65c297a80f6e2c52e6b941b7fd2fcdc2598a69eabedc332f4a89f7f44f", kill_on_drop: false }` [INFO] [stderr] Compiling koto_bytecode v0.10.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/instruction_reader.rs:427:47 [INFO] [stdout] | [INFO] [stdout] 427 | Error { message } => unreachable!(message), [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 427 | Error { message } => unreachable!("{}", message), [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/instruction_reader.rs:512:47 [INFO] [stdout] | [INFO] [stdout] 512 | Error { message } => unreachable!(message), [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 512 | Error { message } => unreachable!("{}", message), [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/instruction_reader.rs:427:47 [INFO] [stdout] | [INFO] [stdout] 427 | Error { message } => unreachable!(message), [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 427 | Error { message } => unreachable!("{}", message), [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/instruction_reader.rs:512:47 [INFO] [stdout] | [INFO] [stdout] 512 | Error { message } => unreachable!(message), [INFO] [stdout] | ^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: add a "{}" format string to Display the message [INFO] [stdout] | [INFO] [stdout] 512 | Error { message } => unreachable!("{}", message), [INFO] [stdout] | +++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 2 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 3.45s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/koto_bytecode-ecf9f463ae6f94b4) [INFO] [stderr] Executable tests/compile_failures.rs (/opt/rustwide/target/debug/deps/compile_failures-41165c0ac005d6dc) [INFO] running `Command { std: "docker" "inspect" "e7608e65c297a80f6e2c52e6b941b7fd2fcdc2598a69eabedc332f4a89f7f44f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "e7608e65c297a80f6e2c52e6b941b7fd2fcdc2598a69eabedc332f4a89f7f44f", kill_on_drop: false }` [INFO] [stdout] e7608e65c297a80f6e2c52e6b941b7fd2fcdc2598a69eabedc332f4a89f7f44f [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-105/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=warn" "-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:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 73cafb80f729553da4cea13b4af21ac9310b944cdc3115f9cd7fd635702b30a7 [INFO] running `Command { std: "docker" "start" "-a" "73cafb80f729553da4cea13b4af21ac9310b944cdc3115f9cd7fd635702b30a7", kill_on_drop: false }` [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/instruction_reader.rs:427:47 [INFO] [stderr] | [INFO] [stderr] 427 | Error { message } => unreachable!(message), [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: add a "{}" format string to Display the message [INFO] [stderr] | [INFO] [stderr] 427 | Error { message } => unreachable!("{}", message), [INFO] [stderr] | +++++ [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/instruction_reader.rs:512:47 [INFO] [stderr] | [INFO] [stderr] 512 | Error { message } => unreachable!(message), [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: this usage of unreachable!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: add a "{}" format string to Display the message [INFO] [stderr] | [INFO] [stderr] 512 | Error { message } => unreachable!("{}", message), [INFO] [stderr] | +++++ [INFO] [stderr] [INFO] [stderr] warning: `koto_bytecode` (lib) generated 2 warnings [INFO] [stderr] warning: `koto_bytecode` (lib test) generated 2 warnings (2 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.09s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/koto_bytecode-ecf9f463ae6f94b4) [INFO] [stdout] [INFO] [stdout] running 1 test [INFO] [stderr] Running tests/compile_failures.rs (/opt/rustwide/target/debug/deps/compile_failures-41165c0ac005d6dc) [INFO] [stdout] test op::tests::check_op_count ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 4 tests [INFO] [stdout] test bytecode::should_fail::match_ellipsis_out_of_position ... ok [INFO] [stdout] test bytecode::should_fail::match_insufficient_patterns ... ok [INFO] [stderr] Doc-tests koto_bytecode [INFO] [stdout] test bytecode::should_fail::match_too_many_patterns ... ok [INFO] [stdout] test bytecode::should_fail::wildcard_as_value ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s [INFO] [stdout] [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" "73cafb80f729553da4cea13b4af21ac9310b944cdc3115f9cd7fd635702b30a7", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "73cafb80f729553da4cea13b4af21ac9310b944cdc3115f9cd7fd635702b30a7", kill_on_drop: false }` [INFO] [stdout] 73cafb80f729553da4cea13b4af21ac9310b944cdc3115f9cd7fd635702b30a7