[INFO] fetching crate colored 3.0.0... [INFO] testing colored-3.0.0 against 1.90.0 for beta-1.91-3 [INFO] extracting crate colored 3.0.0 into /workspace/builds/worker-0-tc1/source [INFO] started tweaking crates.io crate colored 3.0.0 [INFO] removed 0 missing examples [INFO] removed 0 missing tests [INFO] finished tweaking crates.io crate colored 3.0.0 [INFO] tweaked toml for crates.io crate colored 3.0.0 written to /workspace/builds/worker-0-tc1/source/Cargo.toml [INFO] validating manifest of crates.io crate colored 3.0.0 on toolchain 1.90.0 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate colored 3.0.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Updating crates.io index [INFO] [stderr] Downloading crates ... [INFO] [stderr] Downloaded derive_builder v0.9.0 [INFO] [stderr] Downloaded derive_builder_core v0.9.0 [INFO] [stderr] Downloaded const_fn v0.4.11 [INFO] [stderr] Downloaded rspec v1.0.0 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 1cf44ed50f33c29fe9268aa98df3de18ad781d01d2585851c06a6bcb9f93af6b [INFO] running `Command { std: "docker" "start" "-a" "1cf44ed50f33c29fe9268aa98df3de18ad781d01d2585851c06a6bcb9f93af6b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "1cf44ed50f33c29fe9268aa98df3de18ad781d01d2585851c06a6bcb9f93af6b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "1cf44ed50f33c29fe9268aa98df3de18ad781d01d2585851c06a6bcb9f93af6b", kill_on_drop: false }` [INFO] [stdout] 1cf44ed50f33c29fe9268aa98df3de18ad781d01d2585851c06a6bcb9f93af6b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] ba00e413f03ce131568c26e6788211118bd2480c6c005e77d955c0e9eace60e5 [INFO] running `Command { std: "docker" "start" "-a" "ba00e413f03ce131568c26e6788211118bd2480c6c005e77d955c0e9eace60e5", kill_on_drop: false }` [INFO] [stderr] Compiling colored v3.0.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around closure body [INFO] [stdout] --> src/style.rs:245:34 [INFO] [stdout] | [INFO] [stdout] 245 | .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 245 - .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stdout] 245 + .filter(|&(mask, _)| 0 != (u & mask)) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/lib.rs:533:37 [INFO] [stdout] | [INFO] [stdout] 533 | fn escape_inner_reset_sequences(&self) -> Cow { [INFO] [stdout] | ^^^^^ -------- the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 533 | fn escape_inner_reset_sequences(&self) -> Cow<'_, str> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.53s [INFO] running `Command { std: "docker" "inspect" "ba00e413f03ce131568c26e6788211118bd2480c6c005e77d955c0e9eace60e5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ba00e413f03ce131568c26e6788211118bd2480c6c005e77d955c0e9eace60e5", kill_on_drop: false }` [INFO] [stdout] ba00e413f03ce131568c26e6788211118bd2480c6c005e77d955c0e9eace60e5 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] c1d603df2cc29880d653c3349200c6d159b4318a7aee21313484049609de5908 [INFO] running `Command { std: "docker" "start" "-a" "c1d603df2cc29880d653c3349200c6d159b4318a7aee21313484049609de5908", kill_on_drop: false }` [INFO] [stderr] Compiling syn v1.0.109 [INFO] [stderr] Compiling standback v0.2.17 [INFO] [stderr] Compiling strsim v0.9.3 [INFO] [stderr] Compiling proc-macro-hack v0.5.20+deprecated [INFO] [stderr] Compiling const_fn v0.4.11 [INFO] [stderr] Compiling time v0.2.27 [INFO] [stderr] Compiling derive_builder v0.9.0 [INFO] [stderr] Compiling either v1.13.0 [INFO] [stderr] Compiling colored v2.2.0 [INFO] [stderr] Compiling similar v2.6.0 [INFO] [stderr] Compiling console v0.15.10 [INFO] [stderr] Compiling rayon-core v1.12.1 [INFO] [stdout] warning: unnecessary parentheses around closure body [INFO] [stdout] --> src/style.rs:245:34 [INFO] [stdout] | [INFO] [stdout] 245 | .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 245 - .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stdout] 245 + .filter(|&(mask, _)| 0 != (u & mask)) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/lib.rs:533:37 [INFO] [stdout] | [INFO] [stdout] 533 | fn escape_inner_reset_sequences(&self) -> Cow { [INFO] [stdout] | ^^^^^ -------- the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 533 | fn escape_inner_reset_sequences(&self) -> Cow<'_, str> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling insta v1.42.0 [INFO] [stderr] Compiling rayon v1.10.0 [INFO] [stderr] Compiling darling_core v0.10.2 [INFO] [stderr] Compiling time-macros-impl v0.1.2 [INFO] [stderr] Compiling derive-new v0.5.9 [INFO] [stderr] Compiling time-macros v0.1.1 [INFO] [stderr] Compiling darling_macro v0.10.2 [INFO] [stderr] Compiling darling v0.10.2 [INFO] [stderr] Compiling derive_builder_core v0.9.0 [INFO] [stderr] Compiling rspec v1.0.0 [INFO] [stderr] Compiling colored v3.0.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around closure body [INFO] [stdout] --> src/style.rs:245:34 [INFO] [stdout] | [INFO] [stdout] 245 | .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 245 - .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stdout] 245 + .filter(|&(mask, _)| 0 != (u & mask)) [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/lib.rs:533:37 [INFO] [stdout] | [INFO] [stdout] 533 | fn escape_inner_reset_sequences(&self) -> Cow { [INFO] [stdout] | ^^^^^ -------- the same lifetime is hidden here [INFO] [stdout] | | [INFO] [stdout] | the lifetime is elided here [INFO] [stdout] | [INFO] [stdout] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 533 | fn escape_inner_reset_sequences(&self) -> Cow<'_, str> { [INFO] [stdout] | +++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 12.62s [INFO] running `Command { std: "docker" "inspect" "c1d603df2cc29880d653c3349200c6d159b4318a7aee21313484049609de5908", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "c1d603df2cc29880d653c3349200c6d159b4318a7aee21313484049609de5908", kill_on_drop: false }` [INFO] [stdout] c1d603df2cc29880d653c3349200c6d159b4318a7aee21313484049609de5908 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--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:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 0ffc2a6ab828f14b2c80f25a4cb0c09a1f9eb4eaab6b7f073f5eb4e51388684b [INFO] running `Command { std: "docker" "start" "-a" "0ffc2a6ab828f14b2c80f25a4cb0c09a1f9eb4eaab6b7f073f5eb4e51388684b", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around closure body [INFO] [stdout] [INFO] [stderr] --> src/style.rs:245:34 [INFO] [stdout] running 110 tests [INFO] [stderr] | [INFO] [stderr] 245 | .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 245 - .filter(|&(mask, _)| (0 != (u & mask))) [INFO] [stderr] 245 + .filter(|&(mask, _)| 0 != (u & mask)) [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/lib.rs:533:37 [INFO] [stderr] | [INFO] [stderr] 533 | fn escape_inner_reset_sequences(&self) -> Cow { [INFO] [stderr] | ^^^^^ -------- the same lifetime is hidden here [INFO] [stderr] | | [INFO] [stderr] | the lifetime is elided here [INFO] [stderr] | [INFO] [stderr] = help: the same lifetime is referred to in inconsistent ways, making the signature confusing [INFO] [stderr] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 533 | fn escape_inner_reset_sequences(&self) -> Cow<'_, str> { [INFO] [stderr] | +++ [INFO] [stderr] [INFO] [stderr] warning: `colored` (lib) generated 2 warnings (run `cargo fix --lib -p colored` to apply 1 suggestion) [INFO] [stderr] warning: `colored` (lib test) generated 2 warnings (2 duplicates) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.06s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/colored-6552d9521e3e3f7f) [INFO] [stdout] test color::tests::closest_euclidean::almost_black ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_cyan ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_green ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_red ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_white ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_magenta ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_blue ... ok [INFO] [stdout] test color::tests::closest_euclidean::almost_yellow ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_blue ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_cyan ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_green ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_magenta ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_red ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_white ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_yellow ... ok [INFO] [stdout] test color::tests::from_str::black ... ok [INFO] [stdout] test color::tests::from_str::blue ... ok [INFO] [stdout] test color::tests::from_str::brightblack ... ok [INFO] [stdout] test color::tests::from_str::brightblue ... ok [INFO] [stdout] test color::tests::from_str::brightcyan ... ok [INFO] [stdout] test color::tests::from_str::brightgreen ... ok [INFO] [stdout] test color::tests::from_str::brightmagenta ... ok [INFO] [stdout] test color::tests::from_str::brightred ... ok [INFO] [stdout] test color::tests::from_str::brightwhite ... ok [INFO] [stdout] test color::tests::from_str::capitalized ... ok [INFO] [stdout] test color::tests::from_str::brightyellow ... ok [INFO] [stdout] test color::tests::from_str::green ... ok [INFO] [stdout] test color::tests::from_str::invalid ... ok [INFO] [stdout] test color::tests::from_str::mixed_case ... ok [INFO] [stdout] test color::tests::from_str::purple ... ok [INFO] [stdout] test color::tests::from_str::red ... ok [INFO] [stdout] test color::tests::from_string::black ... ok [INFO] [stdout] test color::tests::from_str::yellow ... ok [INFO] [stdout] test color::tests::from_string::brightblue ... ok [INFO] [stdout] test color::tests::from_string::brightcyan ... ok [INFO] [stdout] test color::tests::from_string::brightgreen ... ok [INFO] [stdout] test color::tests::from_string::brightmagenta ... ok [INFO] [stdout] test color::tests::from_string::brightred ... ok [INFO] [stdout] test color::tests::from_string::blue ... ok [INFO] [stdout] test color::tests::from_string::brightwhite ... ok [INFO] [stdout] test color::tests::from_string::brightyellow ... ok [INFO] [stdout] test color::tests::from_string::capitalized ... ok [INFO] [stdout] test color::tests::from_string::cyan ... ok [INFO] [stdout] test color::tests::from_string::green ... ok [INFO] [stdout] test color::tests::from_string::invalid ... ok [INFO] [stdout] test color::tests::from_string::magenta ... ok [INFO] [stdout] test color::tests::from_string::mixed_case ... ok [INFO] [stdout] test color::tests::from_string::red ... ok [INFO] [stdout] test color::tests::from_string::white ... ok [INFO] [stdout] test color::tests::from_string::yellow ... ok [INFO] [stdout] test customcolors::tests::from_tuple ... ok [INFO] [stdout] test color::tests::fromstr::error ... ok [INFO] [stdout] test color::tests::from_string::brightblack ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::not ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::styles_binops ... ok [INFO] [stdout] test color::tests::fromstr::parse ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::styles_not ... ok [INFO] [stdout] test color::tests::closest_euclidean::exact_black ... ok [INFO] [stdout] test style::tests::styles_combine_complex::aggreg1 ... ok [INFO] [stdout] test style::tests::styles_combine_complex::aggreg2 ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::binops_with_styles ... ok [INFO] [stdout] test color::tests::from_str::magenta ... ok [INFO] [stdout] test style::tests::styles_combine_complex::two2 ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::binops ... ok [INFO] [stdout] test color::tests::from_str::cyan ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::assign_ops_with_styles ... ok [INFO] [stdout] test style::tests::styles_combine_complex::all ... ok [INFO] [stdout] test style::tests::styles_combine_complex::five ... ok [INFO] [stdout] test style::tests::styles_combine_complex::six ... ok [INFO] [stdout] test style::tests::styles_combine_complex::three1 ... ok [INFO] [stdout] test style::tests::styles_combine_complex::three2 ... ok [INFO] [stdout] test style::tests::styles_combine_complex::four ... ok [INFO] [stdout] test style::tests::styles_combine_complex::two1 ... ok [INFO] [stdout] test style::tests::styles_combine_complex::aggreg3 ... ok [INFO] [stdout] test color::tests::from_str::white ... ok [INFO] [stdout] test style::tests::styles_combine_complex::two3 ... ok [INFO] [stdout] test style::tests::u8_to_styles_invalid_is_none::empty_is_none ... ok [INFO] [stdout] test style::tests::test_style_contains ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::bold ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::blink ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::dimmed ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::hidden ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::italic ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::reversed ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::strikethrough ... ok [INFO] [stdout] test style::tests::u8_to_styles_isomorphism::underline ... ok [INFO] [stdout] test tests::color_fn ... ok [INFO] [stdout] test tests::bright_color_fn ... ok [INFO] [stdout] test tests::compute_style_simple_bg_blue ... FAILED [INFO] [stdout] test tests::compute_style_blue_bold ... FAILED [INFO] [stdout] test tests::compute_style_blue_on_blue ... FAILED [INFO] [stdout] test tests::compute_style_bright_blue_on_bright_blue ... FAILED [INFO] [stdout] test tests::compute_style_blue_bold_on_blue ... FAILED [INFO] [stdout] test tests::compute_style_simple_bg_bright_blue ... FAILED [INFO] [stdout] test tests::compute_style_simple_bold ... FAILED [INFO] [stdout] test tests::compute_style_simple_fg_blue ... FAILED [INFO] [stdout] test tests::escape_reset_sequence_spec_should_replace_inner_reset_sequence_with_current_style ... FAILED [INFO] [stdout] test tests::compute_style_simple_fg_bright_blue ... FAILED [INFO] [stdout] test tests::escape_reset_sequence_spec_should_do_nothing_on_empty_strings ... ok [INFO] [stdout] test tests::escape_reset_sequence_spec_should_do_nothing_on_string_with_no_reset ... ok [INFO] [stdout] test tests::compute_style_empty_string ... ok [INFO] [stdout] test tests::formatting ... ok [INFO] [stdout] test tests::on_color_fn ... ok [INFO] [stdout] test tests::on_bright_color_fn ... ok [INFO] [stdout] test tests::exposing_tests ... ok [INFO] [stdout] [INFO] [stdout] tests: [INFO] [stdout] [INFO] [stdout] Describe "ShouldColorize" [INFO] [stdout] Specify "::normalize_env" [INFO] [stdout] It "should return None if error" ... ok [INFO] [stdout] It "should return Some(true) if != 0" ... ok [INFO] [stdout] It "should return Some(false) if == 0" ... ok [INFO] [stdout] Specify "::resolve_clicolor_force" [INFO] [stdout] It "should return None if NO_COLOR is not set and CLICOLOR_FORCE is not set or set to 0" ... ok [INFO] [stdout] It "should return Some(false) if NO_COLOR is set and CLICOLOR_FORCE is not enabled" ... ok [INFO] [stdout] It "should prioritize CLICOLOR_FORCE over NO_COLOR if CLICOLOR_FORCE is set to non-zero value" ... ok [INFO] [stdout] Specify "constructors" [INFO] [stdout] It "should have a default constructor" ... ok [INFO] [stdout] It "should have an environment constructor" ... ok [INFO] [stdout] Specify "when only changing clicolors" [INFO] [stdout] It "clicolor == false means no colors" ... ok [INFO] [stdout] It "clicolor == true means colors !" ... ok [INFO] [stdout] It "unset clicolors implies true" ... ok [INFO] [stdout] Specify "when using clicolor_force" [INFO] [stdout] It "clicolor_force should force to true no matter clicolor" ... ok [INFO] [stdout] It "clicolor_force should force to false no matter clicolor" ... ok [INFO] [stdout] Specify "using a manual override" [INFO] [stdout] It "shoud colorize if manual_override is true, but clicolor is false and clicolor_force also false" ... ok [INFO] [stdout] It "should not colorize if manual_override is false, but clicolor is true or clicolor_force is true" ... ok [INFO] [stdout] Specify "::set_override" [INFO] [stdout] It "should exists" ... ok [INFO] [stdout] It "set the manual_override property" ... ok [INFO] [stdout] Specify "::unset_override" [INFO] [stdout] It "should exists" ... ok [INFO] [stdout] It "unset the manual_override property" ... ok [INFO] [stdout] [INFO] [stdout] duration: 0.021s. [INFO] [stdout] [INFO] [stdout] test result: ok. 19 passed; 0 failed; 0 ignored [INFO] [stdout] test control::specs::clicolor_behavior ... ok [INFO] [stdout] test style::tests::style_bitwise_logic::assign_ops ... ok [INFO] [stdout] test tests::escape_reset_sequence_spec_should_replace_multiple_inner_reset_sequences_with_current_style ... FAILED [INFO] [stdout] test tests::it_works ... FAILED [INFO] [stdout] test customcolors::tests::main ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- tests::escape_reset_sequence_spec_should_replace_multiple_inner_reset_sequences_with_current_style stdout ---- [INFO] [stdout] first: start 1:yo 2:yo 3:yo end [INFO] [stdout] second: start 1:yo 2:yo 3:yo end [INFO] [stdout] [INFO] [stdout] thread 'tests::escape_reset_sequence_spec_should_replace_multiple_inner_reset_sequences_with_current_style' panicked at src/lib.rs:939:9: [INFO] [stdout] assertion `left == right` failed [INFO] [stdout] left: "start 1:\u{1b}[3myo\u{1b}[0m\u{1b}[34m 2:\u{1b}[3myo\u{1b}[0m\u{1b}[34m 3:\u{1b}[3myo\u{1b}[0m\u{1b}[34m end" [INFO] [stdout] right: "start 1:yo 2:yo 3:yo end" [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5ebf9ca0e792 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9 [INFO] [stdout] 1: 0x5ebf9ca0e792 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14 [INFO] [stdout] 2: 0x5ebf9ca0e792 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9 [INFO] [stdout] 3: 0x5ebf9ca0e792 - ::fmt::hdcfcb6d4c8489523 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26 [INFO] [stdout] 4: 0x5ebf9ca37373 - core::fmt::rt::Argument::fmt::h2c56b3114963061a [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76 [INFO] [stdout] 5: 0x5ebf9ca37373 - core::fmt::write::h8a494366950f23bb [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25 [INFO] [stdout] 6: 0x5ebf9ca0a723 - std::io::default_write_fmt::h7b8824096454f323 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11 [INFO] [stdout] 7: 0x5ebf9ca0a723 - std::io::Write::write_fmt::h4e71294925c334d0 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13 [INFO] [stdout] 8: 0x5ebf9ca0e5e2 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9 [INFO] [stdout] 9: 0x5ebf9ca10049 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27 [INFO] [stdout] 10: 0x5ebf9ca0fe7e - std::panicking::default_hook::h2c66fc99e962531d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:324:9 [INFO] [stdout] 11: 0x5ebf9ca10955 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13 [INFO] [stdout] 12: 0x5ebf9ca107ea - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13 [INFO] [stdout] 13: 0x5ebf9ca0ec89 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18 [INFO] [stdout] 14: 0x5ebf9ca1047d - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5 [INFO] [stdout] 15: 0x5ebf9ca35080 - core::panicking::panic_fmt::h62f63d096dd276af [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14 [INFO] [stdout] 16: 0x5ebf9ca353d3 - core::panicking::assert_failed_inner::h102b4539a88470c2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:448:17 [INFO] [stdout] 17: 0x5ebf9c81ad78 - core::panicking::assert_failed::h387d7c3a9afe5cce [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:403:5 [INFO] [stdout] 18: 0x5ebf9c8021fb - colored::tests::escape_reset_sequence_spec_should_replace_multiple_inner_reset_sequences_with_current_style::hef0b5a529c16b163 [INFO] [stdout] at /opt/rustwide/workdir/src/lib.rs:939:9 [INFO] [stdout] 19: 0x5ebf9c801ba7 - colored::tests::escape_reset_sequence_spec_should_replace_multiple_inner_reset_sequences_with_current_style::{{closure}}::h0002ad29bd070cdf [INFO] [stdout] at /opt/rustwide/workdir/src/lib.rs:919:101 [INFO] [stdout] 20: 0x5ebf9c8161b6 - core::ops::function::FnOnce::call_once::ha8ea7fff77f42a95 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 21: 0x5ebf9c99eefb - core::ops::function::FnOnce::call_once::h1f9474f1347fff52 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 22: 0x5ebf9c99eefb - test::__rust_begin_short_backtrace::ha52ab26e77157f03 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:648:18 [INFO] [stdout] 23: 0x5ebf9c99e035 - test::run_test_in_process::{{closure}}::h229c1a11a50b261f [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:74 [INFO] [stdout] 24: 0x5ebf9c99e035 - as core::ops::function::FnOnce<()>>::call_once::h78821afbf97b39a9 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9 [INFO] [stdout] 25: 0x5ebf9c99e035 - std::panicking::catch_unwind::do_call::h53abf3ed5bd32ba3 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40 [INFO] [stdout] 26: 0x5ebf9c99e035 - std::panicking::catch_unwind::h6deb5fe1e91873c9 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19 [INFO] [stdout] 27: 0x5ebf9c99e035 - std::panic::catch_unwind::hea0829b6b565654b [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14 [INFO] [stdout] 28: 0x5ebf9c99e035 - test::run_test_in_process::hdc44dfecea3db21b [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:27 [INFO] [stdout] 29: 0x5ebf9c99e035 - test::run_test::{{closure}}::h0364ba59bf23f652 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:592:43 [INFO] [stdout] 30: 0x5ebf9c961c34 - test::run_test::{{closure}}::h32730b304eec05da [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:622:41 [INFO] [stdout] 31: 0x5ebf9c961c34 - std::sys::backtrace::__rust_begin_short_backtrace::h177cb952fc54ad2c [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:158:18 [INFO] [stdout] 32: 0x5ebf9c96560a - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h119d903520007597 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:559:17 [INFO] [stdout] 33: 0x5ebf9c96560a - as core::ops::function::FnOnce<()>>::call_once::hab88401d606702a6 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9 [INFO] [stdout] 34: 0x5ebf9c96560a - std::panicking::catch_unwind::do_call::h163fe12cca9901c2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40 [INFO] [stdout] 35: 0x5ebf9c96560a - std::panicking::catch_unwind::he81557d0e17cc1bc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19 [INFO] [stdout] 36: 0x5ebf9c96560a - std::panic::catch_unwind::hc2b8e79c20593955 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14 [INFO] [stdout] 37: 0x5ebf9c96560a - std::thread::Builder::spawn_unchecked_::{{closure}}::hfa6b4978e07815cc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:557:30 [INFO] [stdout] 38: 0x5ebf9c96560a - core::ops::function::FnOnce::call_once{{vtable.shim}}::hddcd7484a13fd793 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 39: 0x5ebf9ca13b2f - as core::ops::function::FnOnce>::call_once::h5924238c754de3b8 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1971:9 [INFO] [stdout] 40: 0x5ebf9ca13b2f - std::sys::pal::unix::thread::Thread::new::thread_start::hb6e99e73da4d28f8 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/pal/unix/thread.rs:107:17 [INFO] [stdout] 41: 0x7a68e40a5aa4 - [INFO] [stdout] 42: 0x7a68e4132a34 - clone [INFO] [stdout] 43: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- tests::it_works stdout ---- [INFO] [stdout] ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [INFO] [stdout] Snapshot file: src/snapshots/colored__tests__it_works.snap [INFO] [stdout] Snapshot: it_works [INFO] [stdout] Source: src/lib.rs:793 [INFO] [stdout] ──────────────────────────────────────────────────────────────────────────────── [INFO] [stdout] Expression: buf [INFO] [stdout] ──────────────────────────────────────────────────────────────────────────────── [INFO] [stdout] -old snapshot [INFO] [stdout] +new results [INFO] [stdout] ────────────┬─────────────────────────────────────────────────────────────────── [INFO] [stdout] 0 │-␛[31mtoto␛[0m [INFO] [stdout] 1 │-␛[31mtoto␛[0m [INFO] [stdout] 2 │-␛[34mtoto␛[0m [INFO] [stdout] 0 │+toto [INFO] [stdout] 1 │+toto [INFO] [stdout] 2 │+toto [INFO] [stdout] 3 3 │ blue style **** [INFO] [stdout] 4 │-␛[1mtoto␛[0m [INFO] [stdout] 5 │-␛[1;31myeah ! Red bold !␛[0m [INFO] [stdout] 6 │-␛[1;33myeah ! Yellow bold !␛[0m [INFO] [stdout] 7 │-␛[1;34mtoto␛[0m [INFO] [stdout] 8 │-␛[1;34mtoto␛[0m [INFO] [stdout] 9 │-␛[1;4;34mtoto␛[0m [INFO] [stdout] 10 │-␛[3;34mtoto␛[0m [INFO] [stdout] 4 │+toto [INFO] [stdout] 5 │+yeah ! Red bold ! [INFO] [stdout] 6 │+yeah ! Yellow bold ! [INFO] [stdout] 7 │+toto [INFO] [stdout] 8 │+toto [INFO] [stdout] 9 │+toto [INFO] [stdout] 10 │+toto [INFO] [stdout] 11 11 │ ****** [INFO] [stdout] 12 12 │ test clearing [INFO] [stdout] 13 13 │ red cleared [INFO] [stdout] 14 14 │ bold cyan cleared [INFO] [stdout] 15 15 │ ****** [INFO] [stdout] 16 16 │ Bg tests [INFO] [stdout] 17 │-␛[44;32mtoto␛[0m [INFO] [stdout] 18 │-␛[45;33mtoto␛[0m [INFO] [stdout] 19 │-␛[43;35mtoto␛[0m [INFO] [stdout] 20 │-␛[47;35mtoto␛[0m [INFO] [stdout] 21 │-␛[42;36mtoto␛[0m [INFO] [stdout] 22 │-␛[47;30mtoto␛[0m [INFO] [stdout] 17 │+toto [INFO] [stdout] 18 │+toto [INFO] [stdout] 19 │+toto [INFO] [stdout] 20 │+toto [INFO] [stdout] 21 │+toto [INFO] [stdout] 22 │+toto [INFO] [stdout] 23 23 │ ****** [INFO] [stdout] 24 │-␛[32mtoto␛[0m␊ [INFO] [stdout] 25 │-␛[33mtoto␛[0m␊ [INFO] [stdout] 26 │-␛[35mtoto␛[0m␊ [INFO] [stdout] 27 │-␛[35mtoto␛[0m␊ [INFO] [stdout] 28 │-␛[36mtoto␛[0m␊ [INFO] [stdout] 29 │-␛[37mtoto␛[0m␊ [INFO] [stdout] 30 │-␛[32mtoto␛[0m␊ [INFO] [stdout] 31 │-␛[38;2;255;0;0mtoto␛[0m␊ [INFO] [stdout] 32 │-␛[38;2;255;255;0mtoto␛[0m␊ [INFO] [stdout] 33 │-␛[48;2;0;80;80mtoto␛[0m␊ [INFO] [stdout] 34 │-␛[38;2;255;255;0mtoto␛[0m␊ [INFO] [stdout] 35 │-␛[48;2;0;80;80mtoto␛[0m [INFO] [stdout] 24 │+toto [INFO] [stdout] 25 │+toto [INFO] [stdout] 26 │+toto [INFO] [stdout] 27 │+toto [INFO] [stdout] 28 │+toto [INFO] [stdout] 29 │+toto [INFO] [stdout] 30 │+toto [INFO] [stdout] 31 │+toto [INFO] [stdout] 32 │+toto [INFO] [stdout] 33 │+toto [INFO] [stdout] 34 │+toto [INFO] [stdout] 35 │+toto [INFO] [stdout] ────────────┴─────────────────────────────────────────────────────────────────── [INFO] [stdout] [INFO] [stdout] thread 'tests::it_works' panicked at src/lib.rs:793:9: [INFO] [stdout] called `Result::unwrap()` on an `Err` value: FileIo(Os { code: 30, kind: ReadOnlyFilesystem, message: "Read-only file system" }, "/opt/rustwide/workdir/src/snapshots/colored__tests__it_works.snap.new") [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5ebf9ca0e792 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9 [INFO] [stdout] 1: 0x5ebf9ca0e792 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14 [INFO] [stdout] 2: 0x5ebf9ca0e792 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9 [INFO] [stdout] 3: 0x5ebf9ca0e792 - ::fmt::hdcfcb6d4c8489523 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26 [INFO] [stdout] 4: 0x5ebf9ca37373 - core::fmt::rt::Argument::fmt::h2c56b3114963061a [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76 [INFO] [stdout] 5: 0x5ebf9ca37373 - core::fmt::write::h8a494366950f23bb [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25 [INFO] [stdout] 6: 0x5ebf9ca0a723 - std::io::default_write_fmt::h7b8824096454f323 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11 [INFO] [stdout] 7: 0x5ebf9ca0a723 - std::io::Write::write_fmt::h4e71294925c334d0 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13 [INFO] [stdout] 8: 0x5ebf9ca0e5e2 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9 [INFO] [stdout] 9: 0x5ebf9ca10049 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27 [INFO] [stdout] 10: 0x5ebf9ca0fe7e - std::panicking::default_hook::h2c66fc99e962531d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:324:9 [INFO] [stdout] 11: 0x5ebf9ca10955 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13 [INFO] [stdout] 12: 0x5ebf9ca107ea - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13 [INFO] [stdout] 13: 0x5ebf9ca0ec89 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18 [INFO] [stdout] 14: 0x5ebf9ca1047d - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5 [INFO] [stdout] 15: 0x5ebf9ca35080 - core::panicking::panic_fmt::h62f63d096dd276af [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14 [INFO] [stdout] 16: 0x5ebf9ca354e6 - core::result::unwrap_failed::h95bc3f5a607b2c95 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5 [INFO] [stdout] 17: 0x5ebf9c7ffc97 - core::result::Result::unwrap::hec7c9470d6bd683d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23 [INFO] [stdout] 18: 0x5ebf9c7ffc97 - colored::tests::it_works::h6e45e763e40d9d0e [INFO] [stdout] at /opt/rustwide/workdir/src/lib.rs:793:9 [INFO] [stdout] 19: 0x5ebf9c7fd1f7 - colored::tests::it_works::{{closure}}::hbc9c0de0bb340a17 [INFO] [stdout] at /opt/rustwide/workdir/src/lib.rs:750:22 [INFO] [stdout] 20: 0x5ebf9c814c46 - core::ops::function::FnOnce::call_once::h1ce992f3aeeb139e [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 21: 0x5ebf9c99eefb - core::ops::function::FnOnce::call_once::h1f9474f1347fff52 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 22: 0x5ebf9c99eefb - test::__rust_begin_short_backtrace::ha52ab26e77157f03 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:648:18 [INFO] [stdout] 23: 0x5ebf9c99e035 - test::run_test_in_process::{{closure}}::h229c1a11a50b261f [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:74 [INFO] [stdout] 24: 0x5ebf9c99e035 - as core::ops::function::FnOnce<()>>::call_once::h78821afbf97b39a9 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9 [INFO] [stdout] 25: 0x5ebf9c99e035 - std::panicking::catch_unwind::do_call::h53abf3ed5bd32ba3 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40 [INFO] [stdout] 26: 0x5ebf9c99e035 - std::panicking::catch_unwind::h6deb5fe1e91873c9 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19 [INFO] [stdout] 27: 0x5ebf9c99e035 - std::panic::catch_unwind::hea0829b6b565654b [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14 [INFO] [stdout] 28: 0x5ebf9c99e035 - test::run_test_in_process::hdc44dfecea3db21b [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:27 [INFO] [stdout] 29: 0x5ebf9c99e035 - test::run_test::{{closure}}::h0364ba59bf23f652 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:592:43 [INFO] [stdout] 30: 0x5ebf9c961c34 - test::run_test::{{closure}}::h32730b304eec05da [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:622:41 [INFO] [stdout] 31: 0x5ebf9c961c34 - std::sys::backtrace::__rust_begin_short_backtrace::h177cb952fc54ad2c [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:158:18 [INFO] [stdout] 32: 0x5ebf9c96560a - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h119d903520007597 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:559:17 [INFO] [stdout] 33: 0x5ebf9c96560a - as core::ops::function::FnOnce<()>>::call_once::hab88401d606702a6 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9 [INFO] [stdout] 34: 0x5ebf9c96560a - std::panicking::catch_unwind::do_call::h163fe12cca9901c2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40 [INFO] [stdout] 35: 0x5ebf9c96560a - std::panicking::catch_unwind::he81557d0e17cc1bc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19 [INFO] [stdout] 36: 0x5ebf9c96560a - std::panic::catch_unwind::hc2b8e79c20593955 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14 [INFO] [stdout] 37: 0x5ebf9c96560a - std::thread::Builder::spawn_unchecked_::{{closure}}::hfa6b4978e07815cc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:557:30 [INFO] [stdout] 38: 0x5ebf9c96560a - core::ops::function::FnOnce::call_once{{vtable.shim}}::hddcd7484a13fd793 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 39: 0x5ebf9ca13b2f - as core::ops::function::FnOnce>::call_once::h5924238c754de3b8 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1971:9 [INFO] [stdout] 40: 0x5ebf9ca13b2f - std::sys::pal::unix::thread::Thread::new::thread_start::hb6e99e73da4d28f8 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/pal/unix/thread.rs:107:17 [INFO] [stdout] 41: 0x7a68e40a5aa4 - [INFO] [stdout] 42: 0x7a68e4132a34 - clone [INFO] [stdout] 43: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- customcolors::tests::main stdout ---- [INFO] [stdout] ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Snapshot Summary ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ [INFO] [stdout] Snapshot file: src/snapshots/colored__customcolors__tests__main.snap [INFO] [stdout] Snapshot: main [INFO] [stdout] Source: src/customcolors.rs:33 [INFO] [stdout] ──────────────────────────────────────────────────────────────────────────────── [INFO] [stdout] Expression: "Greetings from Ukraine".custom_color(my_color) [INFO] [stdout] ──────────────────────────────────────────────────────────────────────────────── [INFO] [stdout] -old snapshot [INFO] [stdout] +new results [INFO] [stdout] ────────────┬─────────────────────────────────────────────────────────────────── [INFO] [stdout] 0 │-␛[38;2;0;120;120mGreetings from Ukraine␛[0m [INFO] [stdout] 0 │+Greetings from Ukraine [INFO] [stdout] ────────────┴─────────────────────────────────────────────────────────────────── [INFO] [stdout] [INFO] [stdout] thread 'customcolors::tests::main' panicked at src/customcolors.rs:33:9: [INFO] [stdout] called `Result::unwrap()` on an `Err` value: FileIo(Os { code: 30, kind: ReadOnlyFilesystem, message: "Read-only file system" }, "/opt/rustwide/workdir/src/snapshots/colored__customcolors__tests__main.snap.new") [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5ebf9ca0e792 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9 [INFO] [stdout] 1: 0x5ebf9ca0e792 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14 [INFO] [stdout] 2: 0x5ebf9ca0e792 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9 [INFO] [stdout] 3: 0x5ebf9ca0e792 - ::fmt::hdcfcb6d4c8489523 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26 [INFO] [stdout] 4: 0x5ebf9ca37373 - core::fmt::rt::Argument::fmt::h2c56b3114963061a [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76 [INFO] [stdout] 5: 0x5ebf9ca37373 - core::fmt::write::h8a494366950f23bb [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25 [INFO] [stdout] 6: 0x5ebf9ca0a723 - std::io::default_write_fmt::h7b8824096454f323 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11 [INFO] [stdout] 7: 0x5ebf9ca0a723 - std::io::Write::write_fmt::h4e71294925c334d0 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13 [INFO] [stdout] 8: 0x5ebf9ca0e5e2 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9 [INFO] [stdout] 9: 0x5ebf9ca10049 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27 [INFO] [stdout] 10: 0x5ebf9ca0fe7e - std::panicking::default_hook::h2c66fc99e962531d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:324:9 [INFO] [stdout] 11: 0x5ebf9ca10955 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13 [INFO] [stdout] 12: 0x5ebf9ca107ea - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13 [INFO] [stdout] 13: 0x5ebf9ca0ec89 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18 [INFO] [stdout] 14: 0x5ebf9ca1047d - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5 [INFO] [stdout] 15: 0x5ebf9ca35080 - core::panicking::panic_fmt::h62f63d096dd276af [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14 [INFO] [stdout] 16: 0x5ebf9ca354e6 - core::result::unwrap_failed::h95bc3f5a607b2c95 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5 [INFO] [stdout] 17: 0x5ebf9c82afb8 - core::result::Result::unwrap::hec7c9470d6bd683d [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23 [INFO] [stdout] 18: 0x5ebf9c82afb8 - colored::customcolors::tests::main::h4c13a5a9af040d8f [INFO] [stdout] at /opt/rustwide/workdir/src/customcolors.rs:33:9 [INFO] [stdout] 19: 0x5ebf9c82ab17 - colored::customcolors::tests::main::{{closure}}::h1f86094a46668924 [INFO] [stdout] at /opt/rustwide/workdir/src/customcolors.rs:31:14 [INFO] [stdout] 20: 0x5ebf9c816076 - core::ops::function::FnOnce::call_once::ha0ef999c219bea08 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 21: 0x5ebf9c99eefb - core::ops::function::FnOnce::call_once::h1f9474f1347fff52 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 22: 0x5ebf9c99eefb - test::__rust_begin_short_backtrace::ha52ab26e77157f03 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:648:18 [INFO] [stdout] 23: 0x5ebf9c99e035 - test::run_test_in_process::{{closure}}::h229c1a11a50b261f [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:74 [INFO] [stdout] 24: 0x5ebf9c99e035 - as core::ops::function::FnOnce<()>>::call_once::h78821afbf97b39a9 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9 [INFO] [stdout] 25: 0x5ebf9c99e035 - std::panicking::catch_unwind::do_call::h53abf3ed5bd32ba3 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40 [INFO] [stdout] 26: 0x5ebf9c99e035 - std::panicking::catch_unwind::h6deb5fe1e91873c9 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19 [INFO] [stdout] 27: 0x5ebf9c99e035 - std::panic::catch_unwind::hea0829b6b565654b [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14 [INFO] [stdout] 28: 0x5ebf9c99e035 - test::run_test_in_process::hdc44dfecea3db21b [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:671:27 [INFO] [stdout] 29: 0x5ebf9c99e035 - test::run_test::{{closure}}::h0364ba59bf23f652 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:592:43 [INFO] [stdout] 30: 0x5ebf9c961c34 - test::run_test::{{closure}}::h32730b304eec05da [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/test/src/lib.rs:622:41 [INFO] [stdout] 31: 0x5ebf9c961c34 - std::sys::backtrace::__rust_begin_short_backtrace::h177cb952fc54ad2c [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:158:18 [INFO] [stdout] 32: 0x5ebf9c96560a - std::thread::Builder::spawn_unchecked_::{{closure}}::{{closure}}::h119d903520007597 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:559:17 [INFO] [stdout] 33: 0x5ebf9c96560a - as core::ops::function::FnOnce<()>>::call_once::hab88401d606702a6 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panic/unwind_safe.rs:272:9 [INFO] [stdout] 34: 0x5ebf9c96560a - std::panicking::catch_unwind::do_call::h163fe12cca9901c2 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40 [INFO] [stdout] 35: 0x5ebf9c96560a - std::panicking::catch_unwind::he81557d0e17cc1bc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19 [INFO] [stdout] 36: 0x5ebf9c96560a - std::panic::catch_unwind::hc2b8e79c20593955 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14 [INFO] [stdout] 37: 0x5ebf9c96560a - std::thread::Builder::spawn_unchecked_::{{closure}}::hfa6b4978e07815cc [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/thread/mod.rs:557:30 [INFO] [stdout] 38: 0x5ebf9c96560a - core::ops::function::FnOnce::call_once{{vtable.shim}}::hddcd7484a13fd793 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:253:5 [INFO] [stdout] 39: 0x5ebf9ca13b2f - as core::ops::function::FnOnce>::call_once::h5924238c754de3b8 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/alloc/src/boxed.rs:1971:9 [INFO] [stdout] 40: 0x5ebf9ca13b2f - std::sys::pal::unix::thread::Thread::new::thread_start::hb6e99e73da4d28f8 [INFO] [stdout] at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/pal/unix/thread.rs:107:17 [INFO] [stdout] 41: 0x7a68e40a5aa4 - [INFO] [stdout] 42: 0x7a68e4132a34 - clone [INFO] [stdout] 43: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] customcolors::tests::main [INFO] [stdout] tests::compute_style_blue_bold [INFO] [stdout] tests::compute_style_blue_bold_on_blue [INFO] [stdout] tests::compute_style_blue_on_blue [INFO] [stdout] tests::compute_style_bright_blue_on_bright_blue [INFO] [stdout] tests::compute_style_simple_bg_blue [INFO] [stdout] tests::compute_style_simple_bg_bright_blue [INFO] [stdout] tests::compute_style_simple_bold [INFO] [stdout] tests::compute_style_simple_fg_blue [INFO] [stdout] tests::compute_style_simple_fg_bright_blue [INFO] [stdout] tests::escape_reset_sequence_spec_should_replace_inner_reset_sequence_with_current_style [INFO] [stdout] tests::escape_reset_sequence_spec_should_replace_multiple_inner_reset_sequences_with_current_style [INFO] [stdout] tests::it_works [INFO] [stdout] [INFO] [stdout] test result: FAILED. 97 passed; 13 failed; 0 ignored; 0 measured; 0 filtered out; finished in 3.67s [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass `--lib` [INFO] running `Command { std: "docker" "inspect" "0ffc2a6ab828f14b2c80f25a4cb0c09a1f9eb4eaab6b7f073f5eb4e51388684b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "0ffc2a6ab828f14b2c80f25a4cb0c09a1f9eb4eaab6b7f073f5eb4e51388684b", kill_on_drop: false }` [INFO] [stdout] 0ffc2a6ab828f14b2c80f25a4cb0c09a1f9eb4eaab6b7f073f5eb4e51388684b