[INFO] fetching crate collectd-plugin 0.16.0...
[INFO] testing collectd-plugin-0.16.0 against 1.98.0-beta.1 for beta-1.98-1
[INFO] extracting crate collectd-plugin 0.16.0 into /workspace/builds/worker-0-tc2/source
[INFO] started tweaking crates.io crate collectd-plugin 0.16.0
[INFO] removed 0 missing examples
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate collectd-plugin 0.16.0
[INFO] tweaked toml for crates.io crate collectd-plugin 0.16.0 written to /workspace/builds/worker-0-tc2/source/Cargo.toml
[INFO] validating manifest of crates.io crate collectd-plugin 0.16.0 on toolchain 1.98.0-beta.1
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.1" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate collectd-plugin 0.16.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.98.0-beta.1" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc2/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-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:3d5ced03c013a94a2f102a4510f48a6e9184255caf5fd8244f58017bde7f5210" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3
[INFO] running `Command { std: "docker" "start" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", 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" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", 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" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling unicode-ident v1.0.12
[INFO] [stderr]    Compiling autocfg v1.3.0
[INFO] [stderr]    Compiling regex-syntax v0.8.4
[INFO] [stderr]    Compiling serde v1.0.204
[INFO] [stderr]    Compiling libc v0.2.155
[INFO] [stderr]    Compiling iana-time-zone v0.1.60
[INFO] [stderr]    Compiling aho-corasick v1.1.3
[INFO] [stderr]    Compiling bitflags v2.6.0
[INFO] [stderr]    Compiling proc-macro2 v1.0.95
[INFO] [stderr]    Compiling num-traits v0.2.19
[INFO] [stderr]    Compiling quote v1.0.40
[INFO] [stderr]    Compiling syn v2.0.104
[INFO] [stderr]    Compiling chrono v0.4.38
[INFO] [stderr]    Compiling regex-automata v0.4.7
[INFO] [stderr]    Compiling regex v1.10.6
[INFO] [stderr]    Compiling serde_derive v1.0.204
[INFO] [stderr]    Compiling collectd-plugin v0.16.0 (/opt/rustwide/workdir)
[INFO] [stderr]    Compiling log v0.4.22
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/api/oconfig.rs:69:30
[INFO] [stdout]    |
[INFO] [stdout] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem, ConfigError> {
[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] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem<'_>, ConfigError> {
[INFO] [stdout]    |                                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 28.65s
[INFO] running `Command { std: "docker" "inspect" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", 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" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stderr]    Compiling regex-syntax v0.8.4
[INFO] [stderr]    Compiling crossbeam-utils v0.8.20
[INFO] [stderr]    Compiling aho-corasick v1.1.3
[INFO] [stderr]    Compiling serde_json v1.0.122
[INFO] [stderr]    Compiling anstyle v1.0.8
[INFO] [stderr]    Compiling itoa v1.0.11
[INFO] [stderr]    Compiling equivalent v1.0.1
[INFO] [stderr]    Compiling either v1.13.0
[INFO] [stderr]    Compiling rayon-core v1.12.1
[INFO] [stderr]    Compiling ryu v1.0.18
[INFO] [stderr]    Compiling half v2.4.1
[INFO] [stderr]    Compiling indexmap v2.3.0
[INFO] [stderr]    Compiling serde_spanned v0.6.7
[INFO] [stderr]    Compiling toml_datetime v0.6.8
[INFO] [stderr]    Compiling plotters-backend v0.3.6
[INFO] [stderr]    Compiling ciborium-io v0.2.2
[INFO] [stderr]    Compiling winnow v0.6.18
[INFO] [stderr]    Compiling clap_lex v0.7.2
[INFO] [stderr]    Compiling ciborium-ll v0.2.2
[INFO] [stderr]    Compiling clap_builder v4.5.13
[INFO] [stderr]    Compiling crossbeam-epoch v0.9.18
[INFO] [stderr]    Compiling plotters-svg v0.3.6
[INFO] [stderr]    Compiling itertools v0.10.5
[INFO] [stderr]    Compiling crossbeam-deque v0.8.5
[INFO] [stderr]    Compiling is_terminal_polyfill v1.70.1
[INFO] [stderr]    Compiling trybuild v1.0.99
[INFO] [stderr]    Compiling doc-comment v0.3.3
[INFO] [stderr]    Compiling anstyle-query v1.1.3
[INFO] [stderr]    Compiling anyhow v1.0.86
[INFO] [stderr]    Compiling cast v0.3.0
[INFO] [stderr]    Compiling rayon v1.10.0
[INFO] [stderr]    Compiling anstream v0.6.19
[INFO] [stderr]    Compiling regex-automata v0.4.7
[INFO] [stderr]    Compiling tinytemplate v1.2.1
[INFO] [stderr]    Compiling criterion-plot v0.5.0
[INFO] [stderr]    Compiling plotters v0.3.6
[INFO] [stderr]    Compiling toml_edit v0.22.20
[INFO] [stderr]    Compiling clap v4.5.13
[INFO] [stderr]    Compiling ciborium v0.2.2
[INFO] [stderr]    Compiling is-terminal v0.4.12
[INFO] [stderr]    Compiling jiff v0.2.15
[INFO] [stderr]    Compiling once_cell v1.19.0
[INFO] [stderr]    Compiling oorandom v11.1.4
[INFO] [stderr]    Compiling glob v0.3.1
[INFO] [stderr]    Compiling termcolor v1.4.1
[INFO] [stderr]    Compiling anes v0.1.6
[INFO] [stderr]    Compiling serde_test v1.0.177
[INFO] [stderr]    Compiling num_cpus v1.16.0
[INFO] [stderr]    Compiling regex v1.10.6
[INFO] [stderr]    Compiling toml v0.8.19
[INFO] [stderr]    Compiling env_filter v0.1.3
[INFO] [stderr]    Compiling criterion v0.5.1
[INFO] [stderr]    Compiling collectd-plugin v0.16.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/api/oconfig.rs:69:30
[INFO] [stdout]    |
[INFO] [stdout] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem, ConfigError> {
[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] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem<'_>, ConfigError> {
[INFO] [stdout]    |                                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]    Compiling env_logger v0.11.8
[INFO] [stdout] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stdout]   --> src/api/oconfig.rs:69:30
[INFO] [stdout]    |
[INFO] [stdout] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem, ConfigError> {
[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] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem<'_>, ConfigError> {
[INFO] [stdout]    |                                                                   ++++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 1m 10s
[INFO] running `Command { std: "docker" "inspect" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", 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" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.1" "test" "--frozen", kill_on_drop: false }`
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> src/api/oconfig.rs:69:30
[INFO] [stderr]    |
[INFO] [stderr] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem, ConfigError> {
[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] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem<'_>, ConfigError> {
[INFO] [stderr]    |                                                                   ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `collectd-plugin` (lib) generated 1 warning (run `cargo fix --lib -p collectd-plugin` to apply 1 suggestion)
[INFO] [stderr] warning: `collectd-plugin` (lib test) generated 1 warning (1 duplicate)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.21s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/collectd_plugin-b2017adf8c4ee429)
[INFO] [stdout] 
[INFO] [stdout] running 48 tests
[INFO] [stdout] test api::cdtime::tests::test_collectd_to_duration ... ok
[INFO] [stdout] test api::cdtime::tests::test_collectd_to_datetime ... ok
[INFO] [stdout] test api::cdtime::tests::test_collectd_to_nanos ... ok
[INFO] [stdout] test api::cdtime::tests::test_nanos_to_collectd ... ok
[INFO] [stdout] test api::tests::test_empty_to_none ... ok
[INFO] [stdout] test api::tests::test_from_array ... ok
[INFO] [stdout] test api::tests::test_recv_value_list_conversion ... ok
[INFO] [stdout] test api::tests::test_submit ... ok
[INFO] [stdout] test api::tests::test_to_array ... ok
[INFO] [stdout] test api::tests::test_to_array_res_nul ... ok
[INFO] [stdout] test api::tests::test_to_array_res_too_long ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_data_set_s ... ok
[INFO] [stdout] test api::cdtime::tests::test_datetime_to_collectd ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_notification_meta_s__bindgen_ty_1 ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_data_source_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_notification_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_oconfig_value_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_oconfig_value_s__bindgen_ty_1 ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_plugin_ctx_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_oconfig_item_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_user_data_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_pthread_attr_t ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_value_list_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_notification_meta_s ... ok
[INFO] [stdout] test bindings::bindgen_test_layout_value_u ... ok
[INFO] [stdout] test de::tests::test_log_serde_enum ... ok
[INFO] [stdout] test de::tests::test_serde_bool_vec ... ok
[INFO] [stdout] test de::tests::test_serde_bool_vec_sep ... ok
[INFO] [stdout] test de::tests::test_serde_char ... ok
[INFO] [stdout] test de::tests::test_serde_enum ... ok
[INFO] [stdout] test de::tests::test_serde_ignore ... ok
[INFO] [stdout] test de::tests::test_serde_multiple ... ok
[INFO] [stdout] test de::tests::test_serde_empty_bool ... ok
[INFO] [stdout] test de::tests::test_serde_multiple_vec ... ok
[INFO] [stdout] test de::tests::test_serde_new_type ... ok
[INFO] [stdout] test de::tests::test_serde_options ... ok
[INFO] [stdout] test de::tests::test_serde_simple_bool ... ok
[INFO] [stdout] test de::tests::test_serde_simple_number ... ok
[INFO] [stdout] test de::tests::test_serde_nested_multiple ... ok
[INFO] [stdout] test de::tests::test_serde_simple_string ... ok
[INFO] [stdout] test de::tests::test_serde_simple_str ... ok
[INFO] [stdout] test ser::tests::test_ser_value_counter ... ok
[INFO] [stdout] test ser::tests::test_ser_value_absolute ... ok
[INFO] [stdout] test plugins::tests::test_plugin_capabilities ... ok
[INFO] [stdout] test de::tests::test_serde_nested ... ok
[INFO] [stdout] test de::tests::test_serde_log_level ... ok
[INFO] [stdout] test ser::tests::test_ser_value_derive ... ok
[INFO] [stdout] test ser::tests::test_ser_value_gauge ... ok
[INFO] [stdout] 
[INFO] [stdout] test result: ok. 48 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s
[INFO] [stdout] 
[INFO] [stderr]      Running tests/compiles.rs (/opt/rustwide/target/debug/deps/compiles-56d565994bd03a2e)
[INFO] [stdout] 
[INFO] [stdout] running 1 test
[INFO] [stderr]    Compiling proc-macro2 v1.0.95
[INFO] [stderr]    Compiling unicode-ident v1.0.12
[INFO] [stderr]    Compiling serde v1.0.204
[INFO] [stderr]     Checking memchr v2.7.4
[INFO] [stderr]    Compiling crossbeam-utils v0.8.20
[INFO] [stderr]    Compiling autocfg v1.3.0
[INFO] [stderr]    Compiling libc v0.2.155
[INFO] [stderr]     Checking anstyle v1.0.8
[INFO] [stderr]     Checking regex-syntax v0.8.4
[INFO] [stderr]     Checking aho-corasick v1.1.3
[INFO] [stderr]    Compiling num-traits v0.2.19
[INFO] [stderr]     Checking crossbeam-epoch v0.9.18
[INFO] [stderr]    Compiling quote v1.0.40
[INFO] [stderr]    Compiling syn v2.0.104
[INFO] [stderr]     Checking cfg-if v1.0.0
[INFO] [stderr]    Compiling serde_json v1.0.122
[INFO] [stderr]     Checking either v1.13.0
[INFO] [stderr]    Compiling rayon-core v1.12.1
[INFO] [stderr]     Checking half v2.4.1
[INFO] [stderr]     Checking crossbeam-deque v0.8.5
[INFO] [stderr]     Checking clap_lex v0.7.2
[INFO] [stderr]     Checking itoa v1.0.11
[INFO] [stderr]     Checking ciborium-io v0.2.2
[INFO] [stderr]     Checking utf8parse v0.2.2
[INFO] [stderr]     Checking ryu v1.0.18
[INFO] [stderr]     Checking plotters-backend v0.3.6
[INFO] [stderr]     Checking anstyle-parse v0.2.7
[INFO] [stderr]     Checking ciborium-ll v0.2.2
[INFO] [stderr]     Checking clap_builder v4.5.13
[INFO] [stderr]     Checking plotters-svg v0.3.6
[INFO] [stderr]     Checking itertools v0.10.5
[INFO] [stderr]    Compiling anyhow v1.0.86
[INFO] [stderr]     Checking same-file v1.0.6
[INFO] [stderr]     Checking iana-time-zone v0.1.60
[INFO] [stderr]    Compiling doc-comment v0.3.3
[INFO] [stderr]     Checking cast v0.3.0
[INFO] [stderr]     Checking regex-automata v0.4.7
[INFO] [stderr]     Checking colorchoice v1.0.4
[INFO] [stderr]     Checking is_terminal_polyfill v1.70.1
[INFO] [stderr]     Checking anstyle-query v1.1.3
[INFO] [stderr]     Checking chrono v0.4.38
[INFO] [stderr]     Checking anstream v0.6.19
[INFO] [stderr]     Checking walkdir v2.5.0
[INFO] [stderr]     Checking criterion-plot v0.5.0
[INFO] [stderr]     Checking rayon v1.10.0
[INFO] [stderr]     Checking clap v4.5.13
[INFO] [stderr]     Checking plotters v0.3.6
[INFO] [stderr]     Checking is-terminal v0.4.12
[INFO] [stderr]     Checking once_cell v1.19.0
[INFO] [stderr]     Checking anes v0.1.6
[INFO] [stderr]     Checking bitflags v2.6.0
[INFO] [stderr]     Checking jiff v0.2.15
[INFO] [stderr]     Checking oorandom v11.1.4
[INFO] [stderr]     Checking num_cpus v1.16.0
[INFO] [stderr]     Checking regex v1.10.6
[INFO] [stderr]    Compiling serde_derive v1.0.204
[INFO] [stderr]    Compiling collectd-plugin v0.16.0 (/opt/rustwide/workdir)
[INFO] [stderr]     Checking log v0.4.22
[INFO] [stderr]     Checking ciborium v0.2.2
[INFO] [stderr]     Checking serde_test v1.0.177
[INFO] [stderr]     Checking env_filter v0.1.3
[INFO] [stderr]     Checking env_logger v0.11.8
[INFO] [stderr] warning: hiding a lifetime that's elided elsewhere is confusing
[INFO] [stderr]   --> /opt/rustwide/workdir/src/api/oconfig.rs:69:30
[INFO] [stderr]    |
[INFO] [stderr] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem, ConfigError> {
[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] 69 |     pub unsafe fn from(item: &oconfig_item_t) -> Result<ConfigItem<'_>, ConfigError> {
[INFO] [stderr]    |                                                                   ++++
[INFO] [stderr] 
[INFO] [stderr] warning: `collectd-plugin` (lib) generated 1 warning (run `cargo fix --lib -p collectd-plugin` to apply 1 suggestion)
[INFO] [stderr]     Checking tinytemplate v1.2.1
[INFO] [stderr]     Checking criterion v0.5.1
[INFO] [stderr]     Checking collectd-plugin-tests v0.0.0 (/opt/rustwide/target/tests/trybuild/collectd-plugin)
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 57.50s
[INFO] [stderr] 
[INFO] [stderr] 
[INFO] [stderr] test tests/compile-fail/non-sync.rs ... mismatch
[INFO] [stderr] 
[INFO] [stderr] EXPECTED:
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] error[E0277]: `RefCell<std::string::String>` cannot be shared between threads safely
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 | impl Plugin for MyPlugin {
[INFO] [stderr]    |                 ^^^^^^^^ `RefCell<std::string::String>` cannot be shared between threads safely
[INFO] [stderr]    |
[INFO] [stderr]    = help: within `MyPlugin`, the trait `Sync` is not implemented for `RefCell<std::string::String>`
[INFO] [stderr]    = note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
[INFO] [stderr] note: required because it appears within the type `MyPlugin`
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:6:12
[INFO] [stderr]    |
[INFO] [stderr] 6  | pub struct MyPlugin {
[INFO] [stderr]    |            ^^^^^^^^
[INFO] [stderr] note: required by a bound in `Plugin`
[INFO] [stderr]   --> src/plugins.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub trait Plugin: Send + Sync + UnwindSafe + RefUnwindSafe {
[INFO] [stderr]    |                          ^^^^ required by this bound in `Plugin`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the type `UnsafeCell<std::string::String>` may contain interior mutability and a reference may not be safely transferrable across a catch_unwind boundary
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 | impl Plugin for MyPlugin {
[INFO] [stderr]    |                 ^^^^^^^^ `UnsafeCell<std::string::String>` may contain interior mutability and a reference may not be safely transferrable across a catch_unwind boundary
[INFO] [stderr]    |
[INFO] [stderr]    = help: within `MyPlugin`, the trait `RefUnwindSafe` is not implemented for `UnsafeCell<std::string::String>`
[INFO] [stderr] note: required because it appears within the type `RefCell<std::string::String>`
[INFO] [stderr]   --> $RUST/core/src/cell.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub struct RefCell<T: ?Sized> {
[INFO] [stderr]    |            ^^^^^^^
[INFO] [stderr] note: required because it appears within the type `MyPlugin`
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:6:12
[INFO] [stderr]    |
[INFO] [stderr] 6  | pub struct MyPlugin {
[INFO] [stderr]    |            ^^^^^^^^
[INFO] [stderr] note: required by a bound in `Plugin`
[INFO] [stderr]   --> src/plugins.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub trait Plugin: Send + Sync + UnwindSafe + RefUnwindSafe {
[INFO] [stderr]    |                                              ^^^^^^^^^^^^^ required by this bound in `Plugin`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the type `UnsafeCell<isize>` may contain interior mutability and a reference may not be safely transferrable across a catch_unwind boundary
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 | impl Plugin for MyPlugin {
[INFO] [stderr]    |                 ^^^^^^^^ `UnsafeCell<isize>` may contain interior mutability and a reference may not be safely transferrable across a catch_unwind boundary
[INFO] [stderr]    |
[INFO] [stderr]    = help: within `MyPlugin`, the trait `RefUnwindSafe` is not implemented for `UnsafeCell<isize>`
[INFO] [stderr] note: required because it appears within the type `Cell<isize>`
[INFO] [stderr]   --> $RUST/core/src/cell.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub struct Cell<T: ?Sized> {
[INFO] [stderr]    |            ^^^^
[INFO] [stderr] note: required because it appears within the type `RefCell<std::string::String>`
[INFO] [stderr]   --> $RUST/core/src/cell.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub struct RefCell<T: ?Sized> {
[INFO] [stderr]    |            ^^^^^^^
[INFO] [stderr] note: required because it appears within the type `MyPlugin`
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:6:12
[INFO] [stderr]    |
[INFO] [stderr] 6  | pub struct MyPlugin {
[INFO] [stderr]    |            ^^^^^^^^
[INFO] [stderr] note: required by a bound in `Plugin`
[INFO] [stderr]   --> src/plugins.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub trait Plugin: Send + Sync + UnwindSafe + RefUnwindSafe {
[INFO] [stderr]    |                                              ^^^^^^^^^^^^^ required by this bound in `Plugin`
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] 
[INFO] [stderr] ACTUAL OUTPUT:
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] error[E0277]: `RefCell<std::string::String>` cannot be shared between threads safely
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 | impl Plugin for MyPlugin {
[INFO] [stderr]    |                 ^^^^^^^^ `RefCell<std::string::String>` cannot be shared between threads safely
[INFO] [stderr]    |
[INFO] [stderr]    = help: within `MyPlugin`, the trait `Sync` is not implemented for `RefCell<std::string::String>`
[INFO] [stderr]    = note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
[INFO] [stderr] note: required because it appears within the type `MyPlugin`
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:6:12
[INFO] [stderr]    |
[INFO] [stderr]  6 | pub struct MyPlugin {
[INFO] [stderr]    |            ^^^^^^^^
[INFO] [stderr] note: required by a bound in `Plugin`
[INFO] [stderr]   --> src/plugins.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub trait Plugin: Send + Sync + UnwindSafe + RefUnwindSafe {
[INFO] [stderr]    |                          ^^^^ required by this bound in `Plugin`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the type `UnsafeCell<std::string::String>` may contain interior mutability and a reference may not be safely transferable across a catch_unwind boundary
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 | impl Plugin for MyPlugin {
[INFO] [stderr]    |                 ^^^^^^^^ `UnsafeCell<std::string::String>` may contain interior mutability and a reference may not be safely transferable across a catch_unwind boundary
[INFO] [stderr]    |
[INFO] [stderr]    = help: within `MyPlugin`, the trait `RefUnwindSafe` is not implemented for `UnsafeCell<std::string::String>`
[INFO] [stderr] note: required because it appears within the type `RefCell<std::string::String>`
[INFO] [stderr]   --> $RUST/core/src/cell.rs
[INFO] [stderr] note: required because it appears within the type `MyPlugin`
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:6:12
[INFO] [stderr]    |
[INFO] [stderr]  6 | pub struct MyPlugin {
[INFO] [stderr]    |            ^^^^^^^^
[INFO] [stderr] note: required by a bound in `Plugin`
[INFO] [stderr]   --> src/plugins.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub trait Plugin: Send + Sync + UnwindSafe + RefUnwindSafe {
[INFO] [stderr]    |                                              ^^^^^^^^^^^^^ required by this bound in `Plugin`
[INFO] [stderr] 
[INFO] [stderr] error[E0277]: the type `UnsafeCell<isize>` may contain interior mutability and a reference may not be safely transferable across a catch_unwind boundary
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:10:17
[INFO] [stderr]    |
[INFO] [stderr] 10 | impl Plugin for MyPlugin {
[INFO] [stderr]    |                 ^^^^^^^^ `UnsafeCell<isize>` may contain interior mutability and a reference may not be safely transferable across a catch_unwind boundary
[INFO] [stderr]    |
[INFO] [stderr]    = help: within `MyPlugin`, the trait `RefUnwindSafe` is not implemented for `UnsafeCell<isize>`
[INFO] [stderr] note: required because it appears within the type `Cell<isize>`
[INFO] [stderr]   --> $RUST/core/src/cell.rs
[INFO] [stderr] note: required because it appears within the type `RefCell<std::string::String>`
[INFO] [stderr]   --> $RUST/core/src/cell.rs
[INFO] [stderr] note: required because it appears within the type `MyPlugin`
[INFO] [stderr]   --> tests/compile-fail/non-sync.rs:6:12
[INFO] [stderr]    |
[INFO] [stderr]  6 | pub struct MyPlugin {
[INFO] [stderr]    |            ^^^^^^^^
[INFO] [stderr] note: required by a bound in `Plugin`
[INFO] [stderr]   --> src/plugins.rs
[INFO] [stderr]    |
[INFO] [stderr]    | pub trait Plugin: Send + Sync + UnwindSafe + RefUnwindSafe {
[INFO] [stderr]    |                                              ^^^^^^^^^^^^^ required by this bound in `Plugin`
[INFO] [stderr] ┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈┈
[INFO] [stderr] note: If the actual output is the correct output you can bless it by rerunning
[INFO] [stderr]       your test with the environment variable TRYBUILD=overwrite
[INFO] [stderr] 
[INFO] [stderr] 
[INFO] [stderr] 
[INFO] [stdout] test ui ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- ui stdout ----
[INFO] [stdout] 
[INFO] [stdout] thread 'ui' (1453) panicked at /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/trybuild-1.0.99/src/run.rs:101:13:
[INFO] [stdout] 1 of 1 tests failed
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x630992512ae1 - std[73adb7dc35730857]::backtrace_rs::backtrace::libunwind::trace
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x630992512ae1 - std[73adb7dc35730857]::backtrace_rs::backtrace::trace_unsynchronized::<std[73adb7dc35730857]::sys::backtrace::_print_fmt::{closure#1}>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x630992512ae1 - std[73adb7dc35730857]::sys::backtrace::_print_fmt
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/sys/backtrace.rs:74:9
[INFO] [stdout]    3:     0x630992512ae1 - <<std[73adb7dc35730857]::sys::backtrace::BacktraceLock>::print::DisplayBacktrace as core[6883ba1bc0fe4ed1]::fmt::Display>::fmt
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/sys/backtrace.rs:44:26
[INFO] [stdout]    4:     0x63099252926a - <core[6883ba1bc0fe4ed1]::fmt::rt::Argument>::fmt
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/fmt/rt.rs:152:76
[INFO] [stdout]    5:     0x63099252926a - core[6883ba1bc0fe4ed1]::fmt::write
[INFO] [stdout]    6:     0x6309925176ac - std[73adb7dc35730857]::io::default_write_fmt::<alloc[55a36b64bcbf2c0d]::vec::Vec<u8>>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/io/mod.rs:626:11
[INFO] [stdout]    7:     0x6309925176ac - <alloc[55a36b64bcbf2c0d]::vec::Vec<u8> as std[73adb7dc35730857]::io::Write>::write_fmt
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/io/mod.rs:1730:13
[INFO] [stdout]    8:     0x6309924edaa6 - <std[73adb7dc35730857]::sys::backtrace::BacktraceLock>::print
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/sys/backtrace.rs:47:9
[INFO] [stdout]    9:     0x6309924edaa6 - std[73adb7dc35730857]::panicking::default_hook::{closure#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:292:27
[INFO] [stdout]   10:     0x630992509609 - std[73adb7dc35730857]::panicking::default_hook
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:316:9
[INFO] [stdout]   11:     0x6309924a15f0 - <alloc[55a36b64bcbf2c0d]::boxed::Box<dyn for<'a, 'b> core[6883ba1bc0fe4ed1]::ops::function::Fn<(&'a std[73adb7dc35730857]::panic::PanicHookInfo<'b>,), Output = ()> + core[6883ba1bc0fe4ed1]::marker::Send + core[6883ba1bc0fe4ed1]::marker::Sync> as core[6883ba1bc0fe4ed1]::ops::function::Fn<(&std[73adb7dc35730857]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/alloc/src/boxed.rs:2333:9
[INFO] [stdout]   12:     0x6309924a15f0 - test[980ffaebd391d06d]::test_main_inner::<test[980ffaebd391d06d]::test_main_static::{closure#0}>::{closure#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/test/src/lib.rs:155:21
[INFO] [stdout]   13:     0x6309925097c2 - <alloc[55a36b64bcbf2c0d]::boxed::Box<dyn for<'a, 'b> core[6883ba1bc0fe4ed1]::ops::function::Fn<(&'a std[73adb7dc35730857]::panic::PanicHookInfo<'b>,), Output = ()> + core[6883ba1bc0fe4ed1]::marker::Send + core[6883ba1bc0fe4ed1]::marker::Sync> as core[6883ba1bc0fe4ed1]::ops::function::Fn<(&std[73adb7dc35730857]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/alloc/src/boxed.rs:2333:9
[INFO] [stdout]   14:     0x6309925097c2 - std[73adb7dc35730857]::panicking::panic_with_hook
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:823:13
[INFO] [stdout]   15:     0x6309924edb52 - std[73adb7dc35730857]::panicking::panic_handler::{closure#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:688:13
[INFO] [stdout]   16:     0x6309924e5139 - std[73adb7dc35730857]::sys::backtrace::__rust_end_short_backtrace::<std[73adb7dc35730857]::panicking::panic_handler::{closure#0}, !>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/sys/backtrace.rs:182:18
[INFO] [stdout]   17:     0x6309924ee74d - __rustc[a7b7b02e776dd976]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:679:5
[INFO] [stdout]   18:     0x630992529a3c - core[6883ba1bc0fe4ed1]::panicking::panic_fmt
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/panicking.rs:80:14
[INFO] [stdout]   19:     0x6309922c6f94 - <trybuild[91655d22d988ff9b]::Runner>::run
[INFO] [stdout]                                at /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/trybuild-1.0.99/src/run.rs:101:13
[INFO] [stdout]   20:     0x6309922cfd58 - <trybuild[91655d22d988ff9b]::TestCases as core[6883ba1bc0fe4ed1]::ops::drop::Drop>::drop
[INFO] [stdout]                                at /opt/rustwide/cargo-home/registry/src/index.crates.io-1949cf8c6b5b557f/trybuild-1.0.99/src/lib.rs:319:38
[INFO] [stdout]   21:     0x6309921eeb87 - core[6883ba1bc0fe4ed1]::ptr::drop_glue::<trybuild[91655d22d988ff9b]::TestCases>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/ptr/mod.rs:823:1
[INFO] [stdout]   22:     0x6309921eedd3 - compiles[3f99d992ac3e8776]::ui
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/compiles.rs:5:1
[INFO] [stdout]   23:     0x6309921eed27 - compiles[3f99d992ac3e8776]::ui::{closure#0}
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/compiles.rs:2:8
[INFO] [stdout]   24:     0x6309921ef266 - <compiles[3f99d992ac3e8776]::ui::{closure#0} as core[6883ba1bc0fe4ed1]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   25:     0x63099249492b - <fn() -> core[6883ba1bc0fe4ed1]::result::Result<(), alloc[55a36b64bcbf2c0d]::string::String> as core[6883ba1bc0fe4ed1]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   26:     0x63099249492b - test[980ffaebd391d06d]::__rust_begin_short_backtrace::<core[6883ba1bc0fe4ed1]::result::Result<(), alloc[55a36b64bcbf2c0d]::string::String>, fn() -> core[6883ba1bc0fe4ed1]::result::Result<(), alloc[55a36b64bcbf2c0d]::string::String>>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/test/src/lib.rs:724:18
[INFO] [stdout]   27:     0x6309924a1f75 - test[980ffaebd391d06d]::run_test_in_process::{closure#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/test/src/lib.rs:747:74
[INFO] [stdout]   28:     0x6309924a1f75 - <core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<test[980ffaebd391d06d]::run_test_in_process::{closure#0}> as core[6883ba1bc0fe4ed1]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   29:     0x6309924a1f75 - std[73adb7dc35730857]::panicking::catch_unwind::do_call::<core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<test[980ffaebd391d06d]::run_test_in_process::{closure#0}>, core[6883ba1bc0fe4ed1]::result::Result<(), alloc[55a36b64bcbf2c0d]::string::String>>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:576:43
[INFO] [stdout]   30:     0x6309924a1f75 - std[73adb7dc35730857]::panicking::catch_unwind::<core[6883ba1bc0fe4ed1]::result::Result<(), alloc[55a36b64bcbf2c0d]::string::String>, core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<test[980ffaebd391d06d]::run_test_in_process::{closure#0}>>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:544:19
[INFO] [stdout]   31:     0x6309924a1f75 - std[73adb7dc35730857]::panic::catch_unwind::<core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<test[980ffaebd391d06d]::run_test_in_process::{closure#0}>, core[6883ba1bc0fe4ed1]::result::Result<(), alloc[55a36b64bcbf2c0d]::string::String>>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panic.rs:359:14
[INFO] [stdout]   32:     0x6309924a1f75 - test[980ffaebd391d06d]::run_test_in_process
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/test/src/lib.rs:747:27
[INFO] [stdout]   33:     0x6309924a1f75 - test[980ffaebd391d06d]::run_test::{closure#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/test/src/lib.rs:668:43
[INFO] [stdout]   34:     0x63099249ca24 - test[980ffaebd391d06d]::run_test::{closure#1}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/test/src/lib.rs:698:41
[INFO] [stdout]   35:     0x63099249ca24 - std[73adb7dc35730857]::sys::backtrace::__rust_begin_short_backtrace::<test[980ffaebd391d06d]::run_test::{closure#1}, ()>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/sys/backtrace.rs:166:18
[INFO] [stdout]   36:     0x6309924a50c2 - std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked::<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/thread/lifecycle.rs:70:13
[INFO] [stdout]   37:     0x6309924a50c2 - <core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}> as core[6883ba1bc0fe4ed1]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   38:     0x6309924a50c2 - std[73adb7dc35730857]::panicking::catch_unwind::do_call::<core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:576:43
[INFO] [stdout]   39:     0x6309924a50c2 - std[73adb7dc35730857]::panicking::catch_unwind::<(), core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panicking.rs:544:19
[INFO] [stdout]   40:     0x6309924a50c2 - std[73adb7dc35730857]::panic::catch_unwind::<core[6883ba1bc0fe4ed1]::panic::unwind_safe::AssertUnwindSafe<std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/panic.rs:359:14
[INFO] [stdout]   41:     0x6309924a50c2 - std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked::<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/thread/lifecycle.rs:68:26
[INFO] [stdout]   42:     0x6309924a50c2 - <std[73adb7dc35730857]::thread::lifecycle::spawn_unchecked<test[980ffaebd391d06d]::run_test::{closure#1}, ()>::{closure#1} as core[6883ba1bc0fe4ed1]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   43:     0x630992511d3f - <alloc[55a36b64bcbf2c0d]::boxed::Box<dyn core[6883ba1bc0fe4ed1]::ops::function::FnOnce<(), Output = ()> + core[6883ba1bc0fe4ed1]::marker::Send> as core[6883ba1bc0fe4ed1]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/alloc/src/boxed.rs:2319:9
[INFO] [stdout]   44:     0x630992511d3f - <std[73adb7dc35730857]::sys::thread::unix::Thread>::new::thread_start
[INFO] [stdout]                                at /rustc/6b3fa26749ab40e159b2dd5cf577acaaf5902772/library/std/src/sys/thread/unix.rs:123:17
[INFO] [stdout]   45:     0x7aea15e18aa4 - <unknown>
[INFO] [stdout]   46:     0x7aea15ea5a64 - clone
[INFO] [stdout]   47:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     ui
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out; finished in 58.24s
[INFO] [stdout] 
[INFO] [stderr] error: test failed, to rerun pass `--test compiles`
[INFO] running `Command { std: "docker" "inspect" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3", kill_on_drop: false }`
[INFO] [stdout] ac0945074a4fd35984042d9f8485e0a9e983e4c623fa808222c57f1d8799e5e3
