[INFO] fetching crate rusty_dumb_tools 0.1.15... [INFO] testing rusty_dumb_tools-0.1.15 against beta-2025-10-28 for beta-1.92-2 [INFO] extracting crate rusty_dumb_tools 0.1.15 into /workspace/builds/worker-4-tc2/source [INFO] started tweaking crates.io crate rusty_dumb_tools 0.1.15 [INFO] finished tweaking crates.io crate rusty_dumb_tools 0.1.15 [INFO] tweaked toml for crates.io crate rusty_dumb_tools 0.1.15 written to /workspace/builds/worker-4-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate rusty_dumb_tools 0.1.15 on toolchain beta-2025-10-28 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate rusty_dumb_tools 0.1.15 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" "+beta-2025-10-28" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] dee92acbd1bfcd25fd621b6bdb6f9ae7490101b166989a62892dff61d85b8057 [INFO] running `Command { std: "docker" "start" "-a" "dee92acbd1bfcd25fd621b6bdb6f9ae7490101b166989a62892dff61d85b8057", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "dee92acbd1bfcd25fd621b6bdb6f9ae7490101b166989a62892dff61d85b8057", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "dee92acbd1bfcd25fd621b6bdb6f9ae7490101b166989a62892dff61d85b8057", kill_on_drop: false }` [INFO] [stdout] dee92acbd1bfcd25fd621b6bdb6f9ae7490101b166989a62892dff61d85b8057 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 31f273f4c0cb103ac84e1792bae3ea5fcde3b76971f1deeb024cd075e7e725d0 [INFO] running `Command { std: "docker" "start" "-a" "31f273f4c0cb103ac84e1792bae3ea5fcde3b76971f1deeb024cd075e7e725d0", kill_on_drop: false }` [INFO] [stderr] Compiling rusty_dumb_tools v0.1.15 (/opt/rustwide/workdir) [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/json.rs:174:40 [INFO] [stdout] | [INFO] [stdout] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor { [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: the lint level is defined here [INFO] [stdout] --> src/json.rs:3:9 [INFO] [stdout] | [INFO] [stdout] 3 | #![deny(warnings)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]` [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: creating a mutable reference to mutable static [INFO] [stdout] --> src/progress.rs:663:13 [INFO] [stdout] | [INFO] [stdout] 663 | SINGLETON.write(RefCell::new(singleton)); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static [INFO] [stdout] | [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/progress.rs:3:9 [INFO] [stdout] | [INFO] [stdout] 3 | #![deny(warnings)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] = note: `#[warn(static_mut_refs)]` implied by `#[warn(warnings)]` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: creating a shared reference to mutable static [INFO] [stdout] --> src/progress.rs:667:9 [INFO] [stdout] | [INFO] [stdout] 667 | SINGLETON.assume_init_ref() [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static [INFO] [stdout] | [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.85s [INFO] running `Command { std: "docker" "inspect" "31f273f4c0cb103ac84e1792bae3ea5fcde3b76971f1deeb024cd075e7e725d0", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "31f273f4c0cb103ac84e1792bae3ea5fcde3b76971f1deeb024cd075e7e725d0", kill_on_drop: false }` [INFO] [stdout] 31f273f4c0cb103ac84e1792bae3ea5fcde3b76971f1deeb024cd075e7e725d0 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] d2c6384ffdb929c6e5db6f5aec799ff5894c857da2ef3c2f5155f47fb2d63bc0 [INFO] running `Command { std: "docker" "start" "-a" "d2c6384ffdb929c6e5db6f5aec799ff5894c857da2ef3c2f5155f47fb2d63bc0", kill_on_drop: false }` [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/json.rs:174:40 [INFO] [stdout] | [INFO] [stdout] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor { [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: the lint level is defined here [INFO] [stdout] --> src/json.rs:3:9 [INFO] [stdout] | [INFO] [stdout] 3 | #![deny(warnings)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]` [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: creating a mutable reference to mutable static [INFO] [stdout] --> src/progress.rs:663:13 [INFO] [stdout] | [INFO] [stdout] 663 | SINGLETON.write(RefCell::new(singleton)); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static [INFO] [stdout] | [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/progress.rs:3:9 [INFO] [stdout] | [INFO] [stdout] 3 | #![deny(warnings)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] = note: `#[warn(static_mut_refs)]` implied by `#[warn(warnings)]` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: creating a shared reference to mutable static [INFO] [stdout] --> src/progress.rs:667:9 [INFO] [stdout] | [INFO] [stdout] 667 | SINGLETON.assume_init_ref() [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static [INFO] [stdout] | [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rusty_dumb_tools v0.1.15 (/opt/rustwide/workdir) [INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stdout] --> src/json.rs:174:40 [INFO] [stdout] | [INFO] [stdout] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor { [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: the lint level is defined here [INFO] [stdout] --> src/json.rs:3:9 [INFO] [stdout] | [INFO] [stdout] 3 | #![deny(warnings)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]` [INFO] [stdout] help: use `'_` for type paths [INFO] [stdout] | [INFO] [stdout] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: creating a mutable reference to mutable static [INFO] [stdout] --> src/progress.rs:663:13 [INFO] [stdout] | [INFO] [stdout] 663 | SINGLETON.write(RefCell::new(singleton)); [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static [INFO] [stdout] | [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives [INFO] [stdout] note: the lint level is defined here [INFO] [stdout] --> src/progress.rs:3:9 [INFO] [stdout] | [INFO] [stdout] 3 | #![deny(warnings)] [INFO] [stdout] | ^^^^^^^^ [INFO] [stdout] = note: `#[warn(static_mut_refs)]` implied by `#[warn(warnings)]` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: creating a shared reference to mutable static [INFO] [stdout] --> src/progress.rs:667:9 [INFO] [stdout] | [INFO] [stdout] 667 | SINGLETON.assume_init_ref() [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static [INFO] [stdout] | [INFO] [stdout] = note: for more information, see [INFO] [stdout] = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 3.13s [INFO] running `Command { std: "docker" "inspect" "d2c6384ffdb929c6e5db6f5aec799ff5894c857da2ef3c2f5155f47fb2d63bc0", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "d2c6384ffdb929c6e5db6f5aec799ff5894c857da2ef3c2f5155f47fb2d63bc0", kill_on_drop: false }` [INFO] [stdout] d2c6384ffdb929c6e5db6f5aec799ff5894c857da2ef3c2f5155f47fb2d63bc0 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4-tc2/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:4848fb76d95f26979359cc7e45710b1dbc8f3acb7aeedee7c460d7702230f228" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2025-10-28" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] 1869ce8cc075d74ec75ae1d894f06e6628b7cba1004b1cb7f9f3949a0c040e07 [INFO] running `Command { std: "docker" "start" "-a" "1869ce8cc075d74ec75ae1d894f06e6628b7cba1004b1cb7f9f3949a0c040e07", kill_on_drop: false }` [INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing [INFO] [stderr] --> src/json.rs:174:40 [INFO] [stderr] | [INFO] [stderr] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor { [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: the lint level is defined here [INFO] [stderr] --> src/json.rs:3:9 [INFO] [stderr] | [INFO] [stderr] 3 | #![deny(warnings)] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] = note: `#[warn(mismatched_lifetime_syntaxes)]` implied by `#[warn(warnings)]` [INFO] [stderr] help: use `'_` for type paths [INFO] [stderr] | [INFO] [stderr] 174 | pub fn new(json_entry_handler: Box<&mut dyn JsonEntryHandler>) -> DumbJsonProcessor<'_> { [INFO] [stderr] | ++++ [INFO] [stderr] [INFO] [stderr] warning: creating a mutable reference to mutable static [INFO] [stderr] --> src/progress.rs:663:13 [INFO] [stderr] | [INFO] [stderr] 663 | SINGLETON.write(RefCell::new(singleton)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static [INFO] [stderr] | [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives [INFO] [stderr] note: the lint level is defined here [INFO] [stderr] --> src/progress.rs:3:9 [INFO] [stderr] | [INFO] [stderr] 3 | #![deny(warnings)] [INFO] [stderr] | ^^^^^^^^ [INFO] [stderr] = note: `#[warn(static_mut_refs)]` implied by `#[warn(warnings)]` [INFO] [stderr] [INFO] [stderr] warning: creating a shared reference to mutable static [INFO] [stderr] --> src/progress.rs:667:9 [INFO] [stderr] | [INFO] [stderr] 667 | SINGLETON.assume_init_ref() [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static [INFO] [stderr] | [INFO] [stderr] = note: for more information, see [INFO] [stderr] = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives [INFO] [stderr] [INFO] [stderr] warning: `rusty_dumb_tools` (lib) generated 3 warnings (run `cargo fix --lib -p rusty_dumb_tools` to apply 1 suggestion) [INFO] [stderr] warning: `rusty_dumb_tools` (lib test) generated 3 warnings (3 duplicates) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.01s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/rusty_dumb_tools-5e4aaaafa0a63355) [INFO] [stdout] [INFO] [stdout] running 106 tests [INFO] [stdout] test calculator::test_calculator ... ok [INFO] [stdout] test arg::debug_arg_sap ... ok [INFO] [stdout] test arg::test_arg ... ok [INFO] [stdout] test calc::test_calc ... ok [INFO] [stdout] test arg::debug_arg ... ok [INFO] [stdout] test demo::test_arg::test_arg__ ... ok [INFO] [stdout] test demo::test_arg::test_allow_missing_arg_flags ... ok [INFO] [stdout] test demo::test_arg::test_arg_convert ... ok [INFO] [stdout] test demo::test_arg::test_arg_enum ... ok [INFO] [stdout] test demo::test_arg::test_arg_string_range ... ok [INFO] [stdout] test demo::test_arg::test_arg_string_enum ... ok [INFO] [stdout] test demo::test_arg::test_arg_range ... ok [INFO] [stdout] test demo::test_arg::test_args ... ok [INFO] [stdout] test demo::test_arg::test_flag_args_get_default ... ok [INFO] [stdout] test demo::test_arg::test_flag_args ... ok [INFO] [stdout] test demo::test_arg::test_invalid_arg ... ok [INFO] [stdout] test demo::test_arg::test_missing_args ... ok [INFO] [stdout] test demo::test_arg::test_multi_arg_string ... ok [INFO] [stdout] test demo::test_arg::test_overall ... ok [INFO] [stdout] test demo::test_arg::test_rest_multi_arg ... ok [INFO] [stdout] test demo::test_arg::test_positional_args ... ok [INFO] [stdout] test demo::test_calc::test_calc_angle ... ok [INFO] [stdout] test demo::test_calc::test_calc_backup_and_restore ... ok [INFO] [stdout] test demo::test_calc::test_calc_non_standard ... ok [INFO] [stdout] test demo::test_calc::test_calc_op ... ok [INFO] [stdout] test demo::test_calc::test_calc_parse ... ok [INFO] [stdout] test demo::test_arg::test_rest_parsed ... ok [INFO] [stdout] test demo::test_calc::test_calc_priority ... ok [INFO] [stdout] test demo::test_calc::test_calc_error ... ok [INFO] [stdout] test demo::test_calc::test_calc_result ... ok [INFO] [stdout] test demo::test_calc::test_calc_const ... ok [INFO] [stdout] test demo::test_calc::test_calc_push ... ok [INFO] [stdout] test demo::test_calc::test_calc_general ... ok [INFO] [stdout] test demo::test_calc::test_calc_result_2 ... ok [INFO] [stdout] test demo::test_arg::test_missing_arg_flags ... ok [INFO] [stdout] test demo::test_calc::test_calc_unary ... ok [INFO] [stdout] test demo::test_calc::test_calc_underscore ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display_e_2 ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_angle_mode ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display_e ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display_error ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_bug ... ok [INFO] [stdout] test demo::test_calc::test_calc_implicit_op ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display_roundoff ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_bug_2 ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display ... ok [INFO] [stdout] test demo::test_arg::test_multi_arg ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display_big_e ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_display_small_e ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_memory ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_normal ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_push ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_entering ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_push_undo ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_push_chars ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_reset ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_special ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_undo ... ok [INFO] [stdout] test demo::test_calculator::test_calculator_unary ... ok [INFO] [stdout] test demo::test_calculator::test_history_normal ... ok [INFO] [stdout] test demo::test_calculator::test_history_unary ... ok [INFO] [stdout] test demo::test_calculator::test_history_unary_bug ... ok [INFO] [stdout] test demo::test_calculator::test_history_unary_finalized ... ok [INFO] [stdout] test demo::test_calculator::test_history_unary_2 ... ok [INFO] [stdout] test demo::test_json::test_json_array ... ok [INFO] [stdout] test demo::test_json::test_json_array_chunked ... ok [INFO] [stdout] test demo::test_json::test_json_array_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_emojis_bug ... ok [INFO] [stdout] test demo::test_json::test_json_array_chunked_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_emojis_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_escaped ... ok [INFO] [stdout] test demo::test_json::test_json_emojis_chunked ... ok [INFO] [stdout] test demo::test_json::test_json_emojis_chunked_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_escaped_chunked ... ok [INFO] [stdout] test demo::test_json::test_json_escaped_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_escaped_chunked_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_in_place ... ok [INFO] [stdout] test demo::test_json::test_json_obj_array ... ok [INFO] [stdout] test demo::test_json::test_json_emojis ... ok [INFO] [stdout] test demo::test_json::test_json_simple_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_obj_array_chunked ... ok [INFO] [stdout] test demo::test_json::test_json_simple_chunked ... ok [INFO] [stdout] test demo::test_json::test_multiple_json_pieces ... ok [INFO] [stdout] test demo::test_json::test_multiple_jsons ... ok [INFO] [stdout] test demo::test_json::test_multiple_jsons_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_multiple_jsons_chunked ... ok [INFO] [stdout] test demo::test_json::test_multiple_jsons_chunked_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_obj_array_chunked_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_obj_array_by_bytes ... ok [INFO] [stdout] test demo::test_json::test_json_simple ... ok [INFO] [stdout] test demo::test_json::test_multiple_jsons_looped ... ok [INFO] [stdout] test demo::test_json::test_json_simple_chunked_by_bytes ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_fit ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_macro ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_over ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_under ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_truncate ... ok [INFO] [stdout] test demo::test_progress::test_progress_iter ... ok [INFO] [stdout] test ltemp::debug_ltemp ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_align ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_escaped ... ok [INFO] [stdout] test demo::test_ltemp::test_ltemp_multi_line ... ok [INFO] [stdout] test demo::test_lblscreen::test_lblscreen_general ... ok [INFO] [stdout] test demo::test_progress::test_progress_into ... ok [INFO] [stdout] test demo::test_json::test_multiple_jsons_wrapped ... ok [INFO] [stdout] test demo::test_arg::test_arg_types ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 106 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.03s [INFO] [stdout] [INFO] [stderr] Running unittests src/main.rs (/opt/rustwide/target/debug/deps/rusty_dumb_tools-86301b1f60f3f207) [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] [stderr] Doc-tests rusty_dumb_tools [INFO] [stdout] [INFO] [stdout] running 20 tests [INFO] [stdout] test src/lib.rs - (line 21) - compile ... ok [INFO] [stdout] test src/arg.rs - arg::dap_arg (line 54) ... ok [INFO] [stdout] test src/progress.rs - progress::DumbProgressIndicator (line 230) ... ok [INFO] [stdout] test src/lib.rs - (line 14) ... ok [INFO] [stdout] test src/arg.rs - arg::sap_arg (line 31) ... ok [INFO] [stdout] test src/arg.rs - arg::DumbArgParser (line 186) ... ok [INFO] [stdout] test src/progress.rs - progress::DumbProgressIndicator (line 207) ... ok [INFO] [stdout] test src/json.rs - json::DumbJsonProcessor (line 100) ... ok [INFO] [stdout] test src/ltemp.rs - ltemp::DumbLineTemplate (line 148) ... ok [INFO] [stdout] test src/progress.rs - progress::DumbProgressIndicator (line 222) ... ok [INFO] [stdout] test src/progress.rs - progress::DumbProgressIndicator (line 214) ... ok [INFO] [stdout] test src/lblscreen.rs - lblscreen::DumbLineByLineScreen (line 52) ... ok [INFO] [stdout] test src/ltemp.rs - ltemp::dlt_comps (line 28) ... ok [INFO] [stdout] test src/progress.rs - progress::dpir (line 49) ... ok [INFO] [stdout] test src/progress.rs - progress::DumbProgressIndicator (line 244) ... ok [INFO] [stdout] test src/progress.rs - progress::dpi_iter (line 75) ... ok [INFO] [stdout] test src/calculator.rs - calculator::DumbCalculator (line 34) ... ok [INFO] [stdout] test src/calc.rs - calc::DumbCalcProcessor (line 143) ... ok [INFO] [stdout] test src/progress.rs - progress::dpi_into_iter (line 102) ... ok [INFO] [stdout] test src/progress.rs - progress::dpiw (line 21) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 20 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.89s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "1869ce8cc075d74ec75ae1d894f06e6628b7cba1004b1cb7f9f3949a0c040e07", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "1869ce8cc075d74ec75ae1d894f06e6628b7cba1004b1cb7f9f3949a0c040e07", kill_on_drop: false }` [INFO] [stdout] 1869ce8cc075d74ec75ae1d894f06e6628b7cba1004b1cb7f9f3949a0c040e07