[INFO] fetching crate apbool 0.1.999... [INFO] testing apbool-0.1.999 against 1.98.0-beta.6+cargoflags=--release for beta-1.98-release-3 [INFO] extracting crate apbool 0.1.999 into /workspace/builds/worker-1-tc2/source [INFO] started tweaking crates.io crate apbool 0.1.999 [INFO] finished tweaking crates.io crate apbool 0.1.999 [INFO] tweaked toml for crates.io crate apbool 0.1.999 written to /workspace/builds/worker-1-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate apbool 0.1.999 on toolchain 1.98.0-beta.6 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.6" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.6" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.6" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1-tc2/target:/opt/rustwide/target:rw,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" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:00c5645b54fe3ce5dae1417175e3c7fb6a6646c021d554ecd63a097b8b9f3602" "sleep" "infinity", kill_on_drop: false }` [INFO] [stdout] 5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f [INFO] running `Command { std: "docker" "start" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.6" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.6" "build" "--frozen" "--message-format=json" "--release", kill_on_drop: false }` [INFO] [stderr] Compiling apbool v0.1.999 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary `unsafe` block [INFO] [stdout] --> src/doing.rs:22:49 [INFO] [stdout] | [INFO] [stdout] 22 | );})(!it_bee))(!it_be_or))(!it_be))(unsafe { [INFO] [stdout] | ^^^^^^ unnecessary `unsafe` block [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stdout] --> src/lib.rs:352:45 [INFO] [stdout] | [INFO] [stdout] 352 | let mut clon = ApBool::default() | self.clone( [INFO] [stdout] | _____________________________________________^ [INFO] [stdout] 353 | | ); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stdout] = note: `#[warn(noop_method_call)]` on by default [INFO] [stdout] help: remove this redundant call [INFO] [stdout] | [INFO] [stdout] 352 - let mut clon = ApBool::default() | self.clone( [INFO] [stdout] 353 - ); [INFO] [stdout] 352 + let mut clon = ApBool::default() | self; [INFO] [stdout] | [INFO] [stdout] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stdout] | [INFO] [stdout] 7 + #[derive(Clone)] [INFO] [stdout] 8 | pub enum ApBool { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stdout] --> src/lib.rs:613:21 [INFO] [stdout] | [INFO] [stdout] 613 | clon |= self.clone( [INFO] [stdout] | _____________________^ [INFO] [stdout] 614 | | );} [INFO] [stdout] | |__________^ [INFO] [stdout] | [INFO] [stdout] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stdout] help: remove this redundant call [INFO] [stdout] | [INFO] [stdout] 613 - clon |= self.clone( [INFO] [stdout] 614 - );} [INFO] [stdout] 613 + clon |= self;} [INFO] [stdout] | [INFO] [stdout] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stdout] | [INFO] [stdout] 7 + #[derive(Clone)] [INFO] [stdout] 8 | pub enum ApBool { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `release` profile [optimized] target(s) in 0.60s [INFO] running `Command { std: "docker" "inspect" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.6" "test" "--frozen" "--no-run" "--message-format=json" "--release", kill_on_drop: false }` [INFO] [stdout] warning: unnecessary `unsafe` block [INFO] [stdout] --> src/doing.rs:22:49 [INFO] [stdout] | [INFO] [stdout] 22 | );})(!it_bee))(!it_be_or))(!it_be))(unsafe { [INFO] [stdout] | ^^^^^^ unnecessary `unsafe` block [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stdout] --> src/lib.rs:352:45 [INFO] [stdout] | [INFO] [stdout] 352 | let mut clon = ApBool::default() | self.clone( [INFO] [stdout] | _____________________________________________^ [INFO] [stdout] 353 | | ); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stdout] = note: `#[warn(noop_method_call)]` on by default [INFO] [stdout] help: remove this redundant call [INFO] [stdout] | [INFO] [stdout] 352 - let mut clon = ApBool::default() | self.clone( [INFO] [stdout] 353 - ); [INFO] [stdout] 352 + let mut clon = ApBool::default() | self; [INFO] [stdout] | [INFO] [stdout] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stdout] | [INFO] [stdout] 7 + #[derive(Clone)] [INFO] [stdout] 8 | pub enum ApBool { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stdout] --> src/lib.rs:613:21 [INFO] [stdout] | [INFO] [stdout] 613 | clon |= self.clone( [INFO] [stdout] | _____________________^ [INFO] [stdout] 614 | | );} [INFO] [stdout] | |__________^ [INFO] [stdout] | [INFO] [stdout] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stdout] help: remove this redundant call [INFO] [stdout] | [INFO] [stdout] 613 - clon |= self.clone( [INFO] [stdout] 614 - );} [INFO] [stdout] 613 + clon |= self;} [INFO] [stdout] | [INFO] [stdout] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stdout] | [INFO] [stdout] 7 + #[derive(Clone)] [INFO] [stdout] 8 | pub enum ApBool { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling apbool v0.1.999 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary `unsafe` block [INFO] [stdout] --> src/doing.rs:22:49 [INFO] [stdout] | [INFO] [stdout] 22 | );})(!it_bee))(!it_be_or))(!it_be))(unsafe { [INFO] [stdout] | ^^^^^^ unnecessary `unsafe` block [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stdout] --> src/lib.rs:352:45 [INFO] [stdout] | [INFO] [stdout] 352 | let mut clon = ApBool::default() | self.clone( [INFO] [stdout] | _____________________________________________^ [INFO] [stdout] 353 | | ); [INFO] [stdout] | |_______^ [INFO] [stdout] | [INFO] [stdout] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stdout] = note: `#[warn(noop_method_call)]` on by default [INFO] [stdout] help: remove this redundant call [INFO] [stdout] | [INFO] [stdout] 352 - let mut clon = ApBool::default() | self.clone( [INFO] [stdout] 353 - ); [INFO] [stdout] 352 + let mut clon = ApBool::default() | self; [INFO] [stdout] | [INFO] [stdout] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stdout] | [INFO] [stdout] 7 + #[derive(Clone)] [INFO] [stdout] 8 | pub enum ApBool { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stdout] --> src/lib.rs:613:21 [INFO] [stdout] | [INFO] [stdout] 613 | clon |= self.clone( [INFO] [stdout] | _____________________^ [INFO] [stdout] 614 | | );} [INFO] [stdout] | |__________^ [INFO] [stdout] | [INFO] [stdout] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stdout] help: remove this redundant call [INFO] [stdout] | [INFO] [stdout] 613 - clon |= self.clone( [INFO] [stdout] 614 - );} [INFO] [stdout] 613 + clon |= self;} [INFO] [stdout] | [INFO] [stdout] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stdout] | [INFO] [stdout] 7 + #[derive(Clone)] [INFO] [stdout] 8 | pub enum ApBool { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `release` profile [optimized] target(s) in 0.85s [INFO] running `Command { std: "docker" "inspect" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-w" "/opt/rustwide/workdir" "--user" "0:0" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.6" "test" "--frozen" "--release", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary `unsafe` block [INFO] [stderr] --> src/doing.rs:22:49 [INFO] [stderr] | [INFO] [stderr] 22 | );})(!it_bee))(!it_be_or))(!it_be))(unsafe { [INFO] [stderr] | ^^^^^^ unnecessary `unsafe` block [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_unsafe)]` (part of `#[warn(unused)]`) on by default [INFO] [stderr] [INFO] [stderr] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stderr] --> src/lib.rs:352:45 [INFO] [stderr] | [INFO] [stderr] 352 | let mut clon = ApBool::default() | self.clone( [INFO] [stderr] | _____________________________________________^ [INFO] [stderr] 353 | | ); [INFO] [stderr] | |_______^ [INFO] [stderr] | [INFO] [stderr] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stderr] = note: `#[warn(noop_method_call)]` on by default [INFO] [stderr] help: remove this redundant call [INFO] [stderr] | [INFO] [stderr] 352 - let mut clon = ApBool::default() | self.clone( [INFO] [stderr] 353 - ); [INFO] [stderr] 352 + let mut clon = ApBool::default() | self; [INFO] [stderr] | [INFO] [stderr] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stderr] | [INFO] [stderr] 7 + #[derive(Clone)] [INFO] [stderr] 8 | pub enum ApBool { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: call to `.clone()` on a reference in this situation does nothing [INFO] [stderr] --> src/lib.rs:613:21 [INFO] [stderr] | [INFO] [stderr] 613 | clon |= self.clone( [INFO] [stderr] | _____________________^ [INFO] [stderr] 614 | | );} [INFO] [stderr] | |__________^ [INFO] [stderr] | [INFO] [stderr] = note: the type `ApBool` does not implement `Clone`, so calling `clone` on `&ApBool` copies the reference, which does not do anything and can be removed [INFO] [stderr] help: remove this redundant call [INFO] [stderr] | [INFO] [stderr] 613 - clon |= self.clone( [INFO] [stderr] 614 - );} [INFO] [stderr] 613 + clon |= self;} [INFO] [stderr] | [INFO] [stderr] help: if you meant to clone `ApBool`, implement `Clone` for it [INFO] [stderr] | [INFO] [stderr] 7 + #[derive(Clone)] [INFO] [stderr] 8 | pub enum ApBool { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `apbool` (lib) generated 3 warnings (run `cargo fix --lib -p apbool` to apply 2 suggestions) [INFO] [stderr] warning: `apbool` (lib test) generated 3 warnings (3 duplicates) [INFO] [stderr] Finished `release` profile [optimized] target(s) in 0.03s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/release/deps/apbool-eb000254907b5317) [INFO] [stdout] [INFO] [stdout] running 23 tests [INFO] [stdout] test doing::tests::one1 ... ok [INFO] [stdout] test tests::combination ... ok [INFO] [stdout] test doing::tests::clon ... FAILED [INFO] [stdout] test tests::combinationly ... FAILED [INFO] [stdout] test tests::_the_ampersand_ ... FAILED [INFO] [stdout] test tests::combinationfulY ... FAILED [INFO] [stdout] test doing::tests::dothe_Test_already ... FAILED [INFO] [stdout] test tests::combinationful ... FAILED [INFO] [stdout] test tests::combinationyful ... FAILED [INFO] [stdout] test tests::conntens ... ok [INFO] [stdout] test tests::combinationize ... FAILED [INFO] [stdout] test tests::combinationy ... FAILED [INFO] [stdout] test tests::moo ... FAILED [INFO] [stdout] test tests::in_to_bool ... FAILED [INFO] [stdout] test tests::too2 ... ok [INFO] [stdout] test tests::nomoreconstruct ... ok [INFO] [stdout] test doing::tests::test_thingy ... FAILED [INFO] [stdout] test tests::appendation ... FAILED [INFO] [stdout] test tests::not_so_trooiness ... ok [INFO] [stdout] test tests::test_thing ... ok [INFO] [stdout] test tests::out_to_bool ... FAILED [INFO] [stdout] test tests::the_checkindek ... FAILED [INFO] [stdout] test tests::the_trooiness ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- doing::tests::clon stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'doing::tests::clon' (161) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(2047630187479025327867335803233696) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f1a058 - >::call_once [INFO] [stdout] 12: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 13: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 14: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 15: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 16: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 17: 0x79ef052ff07a - [INFO] [stdout] 18: 0x79ef05392534 - clone [INFO] [stdout] 19: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::combinationly stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::combinationly' (171) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f18be0 - >::bitor [INFO] [stdout] 12: 0x64f4b9f166f0 - apbool[60f4001d59f3a916]::tests::combinationly [INFO] [stdout] 13: 0x64f4b9f19d39 - >::call_once [INFO] [stdout] 14: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 15: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 16: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 17: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 18: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 19: 0x79ef052ff07a - [INFO] [stdout] 20: 0x79ef05392534 - clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::_the_ampersand_ stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::_the_ampersand_' (165) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f162be - apbool[60f4001d59f3a916]::tests::appendation [INFO] [stdout] 12: 0x64f4b9f19ce6 - >::call_once [INFO] [stdout] 13: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 14: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 15: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 16: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 17: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 18: 0x79ef052ff07a - [INFO] [stdout] 19: 0x79ef05392534 - clone [INFO] [stdout] 20: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::combinationfulY stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::combinationfulY' (169) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(0) [INFO] [stdout] stack backtrace: [INFO] [stderr] error: test failed, to rerun pass `--lib` [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f18de9 - >::bitor [INFO] [stdout] 12: 0x64f4b9f17193 - apbool[60f4001d59f3a916]::tests::combinationfulY [INFO] [stdout] 13: 0x64f4b9f19da9 - >::call_once [INFO] [stdout] 14: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 15: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 16: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 17: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 18: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 19: 0x79ef052ff07a - [INFO] [stdout] 20: 0x79ef05392534 - clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- doing::tests::dothe_Test_already stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'doing::tests::dothe_Test_already' (162) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(2473108699466906030853965455119776) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f1a058 - >::call_once [INFO] [stdout] 12: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 13: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 14: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 15: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 16: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 17: 0x79ef052ff07a - [INFO] [stdout] 18: 0x79ef05392534 - clone [INFO] [stdout] 19: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::combinationful stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::combinationful' (168) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(0) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f18de9 - >::bitor [INFO] [stdout] 12: 0x64f4b9f16bb3 - apbool[60f4001d59f3a916]::tests::combinationful [INFO] [stdout] 13: 0x64f4b9f19d69 - >::call_once [INFO] [stdout] 14: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 15: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 16: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 17: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 18: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 19: 0x79ef052ff07a - [INFO] [stdout] 20: 0x79ef05392534 - clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::combinationyful stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::combinationyful' (173) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(2595860081098618589157073423958017) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f17663 - apbool[60f4001d59f3a916]::tests::combinationyful [INFO] [stdout] 12: 0x64f4b9f19dc6 - >::call_once [INFO] [stdout] 13: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 14: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 15: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 16: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 17: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 18: 0x79ef052ff07a - [INFO] [stdout] 19: 0x79ef05392534 - clone [INFO] [stdout] 20: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::combinationize stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::combinationize' (170) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f162be - apbool[60f4001d59f3a916]::tests::appendation [INFO] [stdout] 12: 0x64f4b9f19ce6 - >::call_once [INFO] [stdout] 13: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 14: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 15: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 16: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 17: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 18: 0x79ef052ff07a - [INFO] [stdout] 19: 0x79ef05392534 - clone [INFO] [stdout] 20: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::combinationy stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::combinationy' (172) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f162be - apbool[60f4001d59f3a916]::tests::appendation [INFO] [stdout] 12: 0x64f4b9f19ce6 - >::call_once [INFO] [stdout] 13: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 14: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 15: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 16: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 17: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 18: 0x79ef052ff07a - [INFO] [stdout] 19: 0x79ef05392534 - clone [INFO] [stdout] 20: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::moo stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::moo' (176) panicked at src/lib.rs:878:6: [INFO] [stdout] assertion `left == right` failed [INFO] [stdout] left: yeah [INFO] [stdout] right: false [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9fa8453 - core[812a354ff5be3162]::panicking::assert_failed_inner [INFO] [stdout] 12: 0x64f4b9f15e16 - core[812a354ff5be3162]::panicking::assert_failed:: [INFO] [stdout] 13: 0x64f4b9f17ca0 - apbool[60f4001d59f3a916]::tests::moo [INFO] [stdout] 14: 0x64f4b9f1a009 - >::call_once [INFO] [stdout] 15: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 16: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 17: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 18: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 19: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 20: 0x79ef052ff07a - [INFO] [stdout] 21: 0x79ef05392534 - clone [INFO] [stdout] 22: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::in_to_bool stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::in_to_bool' (175) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f18727 - ::bitor [INFO] [stdout] 12: 0x64f4b9f19bc5 - >::from [INFO] [stdout] 13: 0x64f4b9f161c4 - apbool[60f4001d59f3a916]::tests::in_to_bool [INFO] [stdout] 14: 0x64f4b9f19ca9 - >::call_once [INFO] [stdout] 15: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 16: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 17: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 18: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 19: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 20: 0x79ef052ff07a - [INFO] [stdout] 21: 0x79ef05392534 - clone [INFO] [stdout] 22: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- doing::tests::test_thingy stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'doing::tests::test_thingy' (164) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(2473108699466906030853965450917280) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f1a058 - >::call_once [INFO] [stdout] 12: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 13: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 14: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 15: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 16: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 17: 0x79ef052ff07a - [INFO] [stdout] 18: 0x79ef05392534 - clone [INFO] [stdout] 19: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::appendation stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::appendation' (166) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f162be - apbool[60f4001d59f3a916]::tests::appendation [INFO] [stdout] 12: 0x64f4b9f19ce6 - >::call_once [INFO] [stdout] 13: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 14: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 15: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 16: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 17: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 18: 0x79ef052ff07a - [INFO] [stdout] 19: 0x79ef05392534 - clone [INFO] [stdout] 20: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::out_to_bool stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::out_to_bool' (179) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(42390617881384549613569) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f19b1d - >::from [INFO] [stdout] 12: 0x64f4b9f164d4 - apbool[60f4001d59f3a916]::tests::out_to_bool [INFO] [stdout] 13: 0x64f4b9f19d19 - >::call_once [INFO] [stdout] 14: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 15: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 16: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 17: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 18: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 19: 0x79ef052ff07a - [INFO] [stdout] 20: 0x79ef05392534 - clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::the_checkindek stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::the_checkindek' (181) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f18be0 - >::bitor [INFO] [stdout] 12: 0x64f4b9f16f83 - apbool[60f4001d59f3a916]::tests::the_checkindek [INFO] [stdout] 13: 0x64f4b9f19d89 - >::call_once [INFO] [stdout] 14: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 15: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 16: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 17: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 18: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 19: 0x79ef052ff07a - [INFO] [stdout] 20: 0x79ef05392534 - clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::the_trooiness stdout ---- [INFO] [stdout] [INFO] [stdout] thread 'tests::the_trooiness' (182) panicked at src/doing.rs:69:4: [INFO] [stdout] ya True(4294967295) [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x64f4b9f93b71 - <::print::DisplayBacktrace as core[812a354ff5be3162]::fmt::Display>::fmt [INFO] [stdout] 1: 0x64f4b9fa7e0a - core[812a354ff5be3162]::fmt::write [INFO] [stdout] 2: 0x64f4b9f9802c - as std[93043b772a62376c]::io::Write>::write_fmt [INFO] [stdout] 3: 0x64f4b9f72296 - std[93043b772a62376c]::panicking::default_hook::{closure#0} [INFO] [stdout] 4: 0x64f4b9f8bd49 - std[93043b772a62376c]::panicking::default_hook [INFO] [stdout] 5: 0x64f4b9f26dc0 - test[8de0c696b8e66f4f]::test_main_inner::::{closure#0} [INFO] [stdout] 6: 0x64f4b9f8bf02 - std[93043b772a62376c]::panicking::panic_with_hook [INFO] [stdout] 7: 0x64f4b9f72342 - std[93043b772a62376c]::panicking::panic_handler::{closure#0} [INFO] [stdout] 8: 0x64f4b9f69c99 - std[93043b772a62376c]::sys::backtrace::__rust_end_short_backtrace:: [INFO] [stdout] 9: 0x64f4b9f72f3d - __rustc[9fcb67b4460bf95]::rust_begin_unwind [INFO] [stdout] 10: 0x64f4b9fa853c - core[812a354ff5be3162]::panicking::panic_fmt [INFO] [stdout] 11: 0x64f4b9f16ab8 - apbool[60f4001d59f3a916]::tests::the_trooiness [INFO] [stdout] 12: 0x64f4b9f19d56 - >::call_once [INFO] [stdout] 13: 0x64f4b9f1a0fb - test[8de0c696b8e66f4f]::__rust_begin_short_backtrace::, fn() -> core[812a354ff5be3162]::result::Result<(), alloc[9902a75dd20b7c99]::string::String>> [INFO] [stdout] 14: 0x64f4b9f27745 - test[8de0c696b8e66f4f]::run_test::{closure#0} [INFO] [stdout] 15: 0x64f4b9f221f4 - std[93043b772a62376c]::sys::backtrace::__rust_begin_short_backtrace:: [INFO] [stdout] 16: 0x64f4b9f2a892 - ::{closure#1} as core[812a354ff5be3162]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0} [INFO] [stdout] 17: 0x64f4b9f933ff - ::new::thread_start [INFO] [stdout] 18: 0x79ef052ff07a - [INFO] [stdout] 19: 0x79ef05392534 - clone [INFO] [stdout] 20: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] doing::tests::clon [INFO] [stdout] doing::tests::dothe_Test_already [INFO] [stdout] doing::tests::test_thingy [INFO] [stdout] tests::_the_ampersand_ [INFO] [stdout] tests::appendation [INFO] [stdout] tests::combinationful [INFO] [stdout] tests::combinationfulY [INFO] [stdout] tests::combinationize [INFO] [stdout] tests::combinationly [INFO] [stdout] tests::combinationy [INFO] [stdout] tests::combinationyful [INFO] [stdout] tests::in_to_bool [INFO] [stdout] tests::moo [INFO] [stdout] tests::out_to_bool [INFO] [stdout] tests::the_checkindek [INFO] [stdout] tests::the_trooiness [INFO] [stdout] [INFO] [stdout] test result: FAILED. 7 passed; 16 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.16s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f", kill_on_drop: false }` [INFO] [stdout] 5d1af7be9738b3c43a31f8750b98217193ed62e84acaddd398c070d32379b36f