[INFO] fetching crate bv 0.11.1... [INFO] testing bv-0.11.1 against beta-2022-04-10 for beta-1.61-1 [INFO] extracting crate bv 0.11.1 into /workspace/builds/worker-5/source [INFO] validating manifest of crates.io crate bv 0.11.1 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 bv 0.11.1 [INFO] finished tweaking crates.io crate bv 0.11.1 [INFO] tweaked toml for crates.io crate bv 0.11.1 written to /workspace/builds/worker-5/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] running `Command { std: "/workspace/cargo-home/bin/cargo" "+beta-2022-04-10" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 2c3349f7fcfbef6c097635e9d32ac781843c1f64ce0303e65747a14b23264e46 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "2c3349f7fcfbef6c097635e9d32ac781843c1f64ce0303e65747a14b23264e46", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "2c3349f7fcfbef6c097635e9d32ac781843c1f64ce0303e65747a14b23264e46", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "2c3349f7fcfbef6c097635e9d32ac781843c1f64ce0303e65747a14b23264e46", kill_on_drop: false }` [INFO] [stdout] 2c3349f7fcfbef6c097635e9d32ac781843c1f64ce0303e65747a14b23264e46 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 5a69debd2f40230340933e1a6b5838faf6993c5096deb3c0892f97c941fc5e90 [INFO] running `Command { std: "docker" "start" "-a" "5a69debd2f40230340933e1a6b5838faf6993c5096deb3c0892f97c941fc5e90", kill_on_drop: false }` [INFO] [stderr] Compiling bv v0.11.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around block return value [INFO] [stdout] --> src/slice.rs:112:17 [INFO] [stdout] | [INFO] [stdout] 112 | (chunk1 | (chunk2 << shift2)) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 112 - (chunk1 | (chunk2 << shift2)) [INFO] [stdout] 112 + chunk1 | (chunk2 << shift2) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around block return value [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:205:9 [INFO] [stdout] | [INFO] [stdout] 205 | (start + len - real_start) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 205 - (start + len - real_start) [INFO] [stdout] 205 + start + len - real_start [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/traits/bits.rs:62:17 [INFO] [stdout] | [INFO] [stdout] 62 | / format!("Bits::get_block: out of bounds ({}/{})", [INFO] [stdout] 63 | | position, self.block_len())); [INFO] [stdout] | |___________________________________________________^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 62 ~ "Bits::get_block: out of bounds ({}/{})", [INFO] [stdout] 63 ~ position, self.block_len()); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:145:1 [INFO] [stdout] | [INFO] [stdout] 145 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 146 | | impl['a, T: Bits] BitSliceable for &'a BitNot; [INFO] [stdout] 147 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:221:1 [INFO] [stdout] | [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:222:1 [INFO] [stdout] | [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:223:1 [INFO] [stdout] | [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:269:1 [INFO] [stdout] | [INFO] [stdout] 269 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 270 | | impl['a, T: Bits, U: Bits, [INFO] [stdout] 271 | | F: Fn(T::Block, T::Block) -> T::Block] [INFO] [stdout] 272 | | BitSliceable for &'a BitZip; [INFO] [stdout] 273 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/bit_fill.rs:74:1 [INFO] [stdout] | [INFO] [stdout] 74 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 75 | | impl[Block: BlockType] BitSliceable for BitFill; [INFO] [stdout] 76 | | impl['a, Block: BlockType] BitSliceable for &'a BitFill; [INFO] [stdout] 77 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/bit_concat.rs:73:1 [INFO] [stdout] | [INFO] [stdout] 73 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 74 | | impl[T: Bits, U: Bits] BitSliceable for BitConcat; [INFO] [stdout] 75 | | impl['a, T: Bits, U: Bits] BitSliceable for &'a BitConcat; [INFO] [stdout] 76 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 16 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 4.88s [INFO] running `Command { std: "docker" "inspect" "5a69debd2f40230340933e1a6b5838faf6993c5096deb3c0892f97c941fc5e90", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5a69debd2f40230340933e1a6b5838faf6993c5096deb3c0892f97c941fc5e90", kill_on_drop: false }` [INFO] [stdout] 5a69debd2f40230340933e1a6b5838faf6993c5096deb3c0892f97c941fc5e90 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 66e4c82bc7243c9b6275c6fdae48ff0b831acc05e4510bfb6ee69072b5e7f993 [INFO] running `Command { std: "docker" "start" "-a" "66e4c82bc7243c9b6275c6fdae48ff0b831acc05e4510bfb6ee69072b5e7f993", kill_on_drop: false }` [INFO] [stdout] warning: unnecessary parentheses around block return value [INFO] [stdout] --> src/slice.rs:112:17 [INFO] [stdout] | [INFO] [stdout] 112 | (chunk1 | (chunk2 << shift2)) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 112 - (chunk1 | (chunk2 << shift2)) [INFO] [stdout] 112 + chunk1 | (chunk2 << shift2) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling env_logger v0.5.13 [INFO] [stdout] warning: unnecessary parentheses around block return value [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:205:9 [INFO] [stdout] | [INFO] [stdout] 205 | (start + len - real_start) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 205 - (start + len - real_start) [INFO] [stdout] 205 + start + len - real_start [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/traits/bits.rs:62:17 [INFO] [stdout] | [INFO] [stdout] 62 | / format!("Bits::get_block: out of bounds ({}/{})", [INFO] [stdout] 63 | | position, self.block_len())); [INFO] [stdout] | |___________________________________________________^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 62 ~ "Bits::get_block: out of bounds ({}/{})", [INFO] [stdout] 63 ~ position, self.block_len()); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:145:1 [INFO] [stdout] | [INFO] [stdout] 145 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 146 | | impl['a, T: Bits] BitSliceable for &'a BitNot; [INFO] [stdout] 147 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:221:1 [INFO] [stdout] | [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:222:1 [INFO] [stdout] | [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:223:1 [INFO] [stdout] | [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:269:1 [INFO] [stdout] | [INFO] [stdout] 269 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 270 | | impl['a, T: Bits, U: Bits, [INFO] [stdout] 271 | | F: Fn(T::Block, T::Block) -> T::Block] [INFO] [stdout] 272 | | BitSliceable for &'a BitZip; [INFO] [stdout] 273 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/bit_fill.rs:74:1 [INFO] [stdout] | [INFO] [stdout] 74 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 75 | | impl[Block: BlockType] BitSliceable for BitFill; [INFO] [stdout] 76 | | impl['a, Block: BlockType] BitSliceable for &'a BitFill; [INFO] [stdout] 77 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/bit_concat.rs:73:1 [INFO] [stdout] | [INFO] [stdout] 73 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 74 | | impl[T: Bits, U: Bits] BitSliceable for BitConcat; [INFO] [stdout] 75 | | impl['a, T: Bits, U: Bits] BitSliceable for &'a BitConcat; [INFO] [stdout] 76 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 16 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling quickcheck v0.6.2 [INFO] [stderr] Compiling bv v0.11.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around block return value [INFO] [stdout] --> src/slice.rs:112:17 [INFO] [stdout] | [INFO] [stdout] 112 | (chunk1 | (chunk2 << shift2)) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 112 - (chunk1 | (chunk2 << shift2)) [INFO] [stdout] 112 + chunk1 | (chunk2 << shift2) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around block return value [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:205:9 [INFO] [stdout] | [INFO] [stdout] 205 | (start + len - real_start) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 205 - (start + len - real_start) [INFO] [stdout] 205 + start + len - real_start [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/traits/bits.rs:62:17 [INFO] [stdout] | [INFO] [stdout] 62 | / format!("Bits::get_block: out of bounds ({}/{})", [INFO] [stdout] 63 | | position, self.block_len())); [INFO] [stdout] | |___________________________________________________^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 62 ~ "Bits::get_block: out of bounds ({}/{})", [INFO] [stdout] 63 ~ position, self.block_len()); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:145:1 [INFO] [stdout] | [INFO] [stdout] 145 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 146 | | impl['a, T: Bits] BitSliceable for &'a BitNot; [INFO] [stdout] 147 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:221:1 [INFO] [stdout] | [INFO] [stdout] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:222:1 [INFO] [stdout] | [INFO] [stdout] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stdout] | --------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:172:26 [INFO] [stdout] | [INFO] [stdout] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stdout] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/logic.rs:178:26 [INFO] [stdout] | [INFO] [stdout] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] ... [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stdout] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:223:1 [INFO] [stdout] | [INFO] [stdout] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/logic.rs:269:1 [INFO] [stdout] | [INFO] [stdout] 269 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 270 | | impl['a, T: Bits, U: Bits, [INFO] [stdout] 271 | | F: Fn(T::Block, T::Block) -> T::Block] [INFO] [stdout] 272 | | BitSliceable for &'a BitZip; [INFO] [stdout] 273 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/bit_fill.rs:74:1 [INFO] [stdout] | [INFO] [stdout] 74 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 75 | | impl[Block: BlockType] BitSliceable for BitFill; [INFO] [stdout] 76 | | impl['a, Block: BlockType] BitSliceable for &'a BitFill; [INFO] [stdout] 77 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: panic message is not a string literal [INFO] [stdout] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stdout] | [INFO] [stdout] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] ::: src/adapter/bit_concat.rs:73:1 [INFO] [stdout] | [INFO] [stdout] 73 | / impl_bit_sliceable_adapter! { [INFO] [stdout] 74 | | impl[T: Bits, U: Bits] BitSliceable for BitConcat; [INFO] [stdout] 75 | | impl['a, T: Bits, U: Bits] BitSliceable for &'a BitConcat; [INFO] [stdout] 76 | | } [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stdout] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: remove the `format!(..)` macro call [INFO] [stdout] | [INFO] [stdout] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stdout] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 16 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 10.80s [INFO] [stderr] Executable unittests src/lib.rs (/opt/rustwide/target/debug/deps/bv-2c45b946f74237a5) [INFO] [stderr] Executable tests/random_adapter.rs (/opt/rustwide/target/debug/deps/random_adapter-af8b5dc2785897db) [INFO] running `Command { std: "docker" "inspect" "66e4c82bc7243c9b6275c6fdae48ff0b831acc05e4510bfb6ee69072b5e7f993", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "66e4c82bc7243c9b6275c6fdae48ff0b831acc05e4510bfb6ee69072b5e7f993", kill_on_drop: false }` [INFO] [stdout] 66e4c82bc7243c9b6275c6fdae48ff0b831acc05e4510bfb6ee69072b5e7f993 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5/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:eaef2f80f755933c374d2ae5edccceec0c1312ceb8a4e0b6404e8ab76561e1e5" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2022-04-10" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 908da617210a586284967cd321ab3506e10414810623f78b5f884a70228a731c [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `Command { std: "docker" "start" "-a" "908da617210a586284967cd321ab3506e10414810623f78b5f884a70228a731c", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> src/slice.rs:112:17 [INFO] [stderr] | [INFO] [stderr] 112 | (chunk1 | (chunk2 << shift2)) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 112 - (chunk1 | (chunk2 << shift2)) [INFO] [stderr] 112 + chunk1 | (chunk2 << shift2) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:205:9 [INFO] [stderr] | [INFO] [stderr] 205 | (start + len - real_start) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 205 - (start + len - real_start) [INFO] [stderr] 205 + start + len - real_start [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/traits/bits.rs:62:17 [INFO] [stderr] | [INFO] [stderr] 62 | / format!("Bits::get_block: out of bounds ({}/{})", [INFO] [stderr] 63 | | position, self.block_len())); [INFO] [stderr] | |___________________________________________________^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(non_fmt_panics)]` on by default [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 62 ~ "Bits::get_block: out of bounds ({}/{})", [INFO] [stderr] 63 ~ position, self.block_len()); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/logic.rs:145:1 [INFO] [stderr] | [INFO] [stderr] 145 | / impl_bit_sliceable_adapter! { [INFO] [stderr] 146 | | impl['a, T: Bits] BitSliceable for &'a BitNot; [INFO] [stderr] 147 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/logic.rs:172:26 [INFO] [stderr] | [INFO] [stderr] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stderr] | --------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stderr] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/logic.rs:178:26 [INFO] [stderr] | [INFO] [stderr] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stderr] | --------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stderr] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/logic.rs:221:1 [INFO] [stderr] | [INFO] [stderr] 221 | impl_bits_bin_op!(BitAnd as & &&); [INFO] [stderr] | --------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/logic.rs:172:26 [INFO] [stderr] | [INFO] [stderr] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stderr] | --------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stderr] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/logic.rs:178:26 [INFO] [stderr] | [INFO] [stderr] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stderr] | --------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stderr] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/logic.rs:222:1 [INFO] [stderr] | [INFO] [stderr] 222 | impl_bits_bin_op!(BitOr as | ||); [INFO] [stderr] | --------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/logic.rs:172:26 [INFO] [stderr] | [INFO] [stderr] 172 | format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stderr] | -------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 172 - format!("{}::get_bit: out of bounds", stringify!($target)) ); [INFO] [stderr] 172 + "{}::get_bit: out of bounds", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/logic.rs:178:26 [INFO] [stderr] | [INFO] [stderr] 178 | format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] ... [INFO] [stderr] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stderr] | -------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bits_bin_op` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 178 - format!("{}::get_block: out of bounds", stringify!($target)) ); [INFO] [stderr] 178 + "{}::get_block: out of bounds", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/logic.rs:223:1 [INFO] [stderr] | [INFO] [stderr] 223 | impl_bits_bin_op!(BitXor as ^ ^); [INFO] [stderr] | -------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/logic.rs:269:1 [INFO] [stderr] | [INFO] [stderr] 269 | / impl_bit_sliceable_adapter! { [INFO] [stderr] 270 | | impl['a, T: Bits, U: Bits, [INFO] [stderr] 271 | | F: Fn(T::Block, T::Block) -> T::Block] [INFO] [stderr] 272 | | BitSliceable for &'a BitZip; [INFO] [stderr] 273 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/bit_fill.rs:74:1 [INFO] [stderr] | [INFO] [stderr] 74 | / impl_bit_sliceable_adapter! { [INFO] [stderr] 75 | | impl[Block: BlockType] BitSliceable for BitFill; [INFO] [stderr] 76 | | impl['a, Block: BlockType] BitSliceable for &'a BitFill; [INFO] [stderr] 77 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: panic message is not a string literal [INFO] [stderr] --> src/adapter/bit_slice_adapter.rs:90:30 [INFO] [stderr] | [INFO] [stderr] 90 | ... format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] ::: src/adapter/bit_concat.rs:73:1 [INFO] [stderr] | [INFO] [stderr] 73 | / impl_bit_sliceable_adapter! { [INFO] [stderr] 74 | | impl[T: Bits, U: Bits] BitSliceable for BitConcat; [INFO] [stderr] 75 | | impl['a, T: Bits, U: Bits] BitSliceable for &'a BitConcat; [INFO] [stderr] 76 | | } [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this usage of assert!() is deprecated; it will be a hard error in Rust 2021 [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: the assert!() macro supports formatting, so there's no need for the format!() macro here [INFO] [stderr] = note: this warning originates in the macro `impl_bit_sliceable_adapter` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: remove the `format!(..)` macro call [INFO] [stderr] | [INFO] [stderr] 90 - format!("{}::slice: bad range", stringify!($target)) ); [INFO] [stderr] 90 + "{}::slice: bad range", stringify!($target) ); [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `bv` (lib) generated 16 warnings [INFO] [stderr] warning: `bv` (lib test) generated 16 warnings (16 duplicates) [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.05s [INFO] [stdout] [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/bv-2c45b946f74237a5) [INFO] [stdout] running 70 tests [INFO] [stdout] test adapter::test::and_with_different_offset ... ok [INFO] [stdout] test adapter::test::append ... ok [INFO] [stdout] test adapter::test::simple_and ... ok [INFO] [stdout] test adapter::test::slice_adapter ... ok [INFO] [stdout] test bit_vec::test::clear_and_is_empty ... ok [INFO] [stdout] test bit_vec::test::disequality ... ok [INFO] [stdout] test bit_vec::test::into_boxed_slice ... ok [INFO] [stdout] test bit_vec::test::mixed_equality ... ok [INFO] [stdout] test bit_vec::test::push_bit_and_pop_bit ... ok [INFO] [stdout] test bit_vec::test::resize ... ok [INFO] [stdout] test bit_vec::test::set_bits_one_block_fastpath ... ok [INFO] [stdout] test bit_vec::test::set_through_slice ... ok [INFO] [stdout] test bit_vec::test::shrink_to_fit ... ok [INFO] [stdout] test iter::test::different_lengths ... ok [INFO] [stdout] test bit_vec::test::truncate ... ok [INFO] [stdout] test iter::test::different ... ok [INFO] [stdout] test prims::test::block_len ... ok [INFO] [stdout] test prims::test::bit_len ... ok [INFO] [stdout] test macros::type_1_hygiene ... ok [INFO] [stdout] test iter::test::empty ... ok [INFO] [stdout] test macros::bit_vec_macro_allows_trailing_comma ... ok [INFO] [stdout] test iter::test::same ... ok [INFO] [stdout] test bit_vec::test::pop ... ok [INFO] [stdout] test prims::test::get_bit ... ok [INFO] [stdout] test prims::test::get_bits ... ok [INFO] [stdout] test bit_vec::test::from_bits ... ok [INFO] [stdout] test prims::test::u128_feature ... ok [INFO] [stdout] test slice::test::range_to_inclusive ... ok [INFO] [stdout] test storage::test::block_bits ... ok [INFO] [stdout] test prims::test::prop_get_block_u32 ... ok [INFO] [stdout] test prims::test::set_bit ... ok [INFO] [stdout] test storage::test::ceil_lg ... ok [INFO] [stdout] test prims::test::prop_get_block_u8 ... ok [INFO] [stdout] test slice::test::bit_slice_from_slice ... ok [INFO] [stdout] test storage::test::get_bits ... ok [INFO] [stdout] test storage::test::floor_lg ... ok [INFO] [stdout] test bit_vec::test::bit_slicing ... ok [INFO] [stdout] test bit_vec::test::from_bits_slice ... ok [INFO] [stdout] test adapter::test::slice_adapter_mutation ... ok [INFO] [stdout] test bit_vec::test::as_mut_slice ... ok [INFO] [stdout] test slice::test::bit_slice_index ... ok [INFO] [stdout] test slice::test::bit_slice_update_across_blocks ... ok [INFO] [stdout] test adapter::test::simple_not ... ok [INFO] [stdout] test adapter::test::mixed_equality ... ok [INFO] [stdout] test storage::test::low_mask ... ok [INFO] [stdout] test adapter::test::and_with_same_offset ... ok [INFO] [stdout] test adapter::test::pad ... ok [INFO] [stdout] test storage::test::get_bit ... ok [INFO] [stdout] test storage::test::nbits ... ok [INFO] [stdout] test storage::test::nth_mask ... ok [INFO] [stdout] test storage::test::prop_ceil_div_nbits1 ... ok [INFO] [stdout] test slice::test::debug_for_bit_slice ... ok [INFO] [stdout] test storage::test::lg_nbits ... ok [INFO] [stdout] test storage::test::prop_div_nbits ... ok [INFO] [stdout] test storage::test::prop_mod_nbits ... ok [INFO] [stdout] test storage::test::prop_mul_nbits ... ok [INFO] [stdout] test traits::test::bogus_get_bits_vec_bool_works_okay ... ok [INFO] [stdout] test traits::bits_mut_ext::test::bit_xor_assign_slice ... ok [INFO] [stdout] test traits::test::bit_slicing ... ok [INFO] [stdout] test traits::bits_mut_ext::test::bit_and_assign ... ok [INFO] [stdout] test traits::test::set_block_slice ... ok [INFO] [stdout] test traits::test::vec_u8_is_bit_vec ... ok [INFO] [stdout] test traits::test::vec_u8_is_bit_vec_mut ... ok [INFO] [stdout] test storage::test::with_bit ... ok [INFO] [stdout] test storage::test::with_bits ... ok [INFO] [stdout] test traits::test::set_block ... ok [INFO] [stdout] test storage::test::prop_ceil_div_nbits2 ... ok [INFO] [stdout] test traits::test::get_block_oob - should panic ... ok [INFO] [stdout] test traits::bits_mut_ext::test::bit_and_assign_bad_sizes - should panic ... ok [INFO] [stdout] test traits::test::bogus_get_bits_vec_bool_oob - should panic ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 70 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.15s [INFO] [stdout] [INFO] [stderr] Running tests/random_adapter.rs (/opt/rustwide/target/debug/deps/random_adapter-af8b5dc2785897db) [INFO] [stdout] [INFO] [stdout] running 5 tests [INFO] [stdout] test prop_u16 ... ok [INFO] [stdout] test prop_u32 ... ok [INFO] [stdout] test prop_u8 ... ok [INFO] [stdout] test prop_u64 ... ok [INFO] [stdout] test prop_usize ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.10s [INFO] [stdout] [INFO] [stderr] Doc-tests bv [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> /opt/rustwide/workdir/src/slice.rs:112:17 [INFO] [stderr] | [INFO] [stderr] 112 | (chunk1 | (chunk2 << shift2)) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 112 - (chunk1 | (chunk2 << shift2)) [INFO] [stderr] 112 + chunk1 | (chunk2 << shift2) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around block return value [INFO] [stderr] --> /opt/rustwide/workdir/src/adapter/bit_slice_adapter.rs:205:9 [INFO] [stderr] | [INFO] [stderr] 205 | (start + len - real_start) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 205 - (start + len - real_start) [INFO] [stderr] 205 + start + len - real_start [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: 2 warnings emitted [INFO] [stderr] [INFO] [stdout] [INFO] [stdout] running 36 tests [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::pop (line 592) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::block_capacity (line 272) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::is_empty (line 636) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::block_reserve_exact (line 356) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::block_len (line 235) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::new_fill (line 148) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::clear (line 618) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::len (line 214) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::block_reserve (line 317) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::new (line 94) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::as_mut_slice (line 511) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::into_boxed_slice (line 402) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::capacity (line 253) ... ok [INFO] [stdout] test src/adapter/bool_adapter.rs - adapter::bool_adapter::BoolAdapter::new (line 38) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec (line 32) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::as_slice (line 486) ... ok [INFO] [stdout] test src/lib.rs - (line 83) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::with_capacity (line 117) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::with_block_capacity (line 131) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::push (line 560) ... ok [INFO] [stdout] test src/lib.rs - (line 60) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::reserve_exact (line 337) ... ok [INFO] [stdout] test src/macros.rs - macros::bit_vec (line 13) ... ok [INFO] [stdout] test src/lib.rs - (line 23) ... ok [INFO] [stdout] test src/slice.rs - slice::BitSlice::from_slice (line 209) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::truncate (line 423) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::shrink_to_fit (line 375) ... ok [INFO] [stdout] test src/slice.rs - slice::BitSlice (line 157) ... ok [INFO] [stdout] test src/lib.rs - (line 41) ... ok [INFO] [stdout] test src/slice.rs - slice::BitSlice::is_empty (line 268) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::reserve (line 295) ... ok [INFO] [stdout] test src/bit_vec/mod.rs - bit_vec::BitVec::resize (line 445) ... ok [INFO] [stdout] test src/slice.rs - slice::BitSliceMut (line 180) ... ok [INFO] [stdout] test src/slice.rs - slice::BitSlice::len (line 251) ... ok [INFO] [stdout] test src/traits/bit_sliceable.rs - traits::bit_sliceable::BitSliceable::bit_slice (line 20) ... ok [INFO] [stdout] test src/traits/bits_ext.rs - traits::bits_ext::BitsExt (line 18) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 36 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 12.55s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "908da617210a586284967cd321ab3506e10414810623f78b5f884a70228a731c", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "908da617210a586284967cd321ab3506e10414810623f78b5f884a70228a731c", kill_on_drop: false }` [INFO] [stdout] 908da617210a586284967cd321ab3506e10414810623f78b5f884a70228a731c