[INFO] cloning repository https://github.com/ivanYudushkin/broken-app
[INFO] running `Command { std: "git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/ivanYudushkin/broken-app" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FivanYudushkin%2Fbroken-app", kill_on_drop: false }`
[INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FivanYudushkin%2Fbroken-app'...
[INFO] running `Command { std: "git" "rev-parse" "HEAD", kill_on_drop: false }`
[INFO] [stdout] e0c12e9c53db0039c65b82da6b1c1aa3b7f99598
[INFO] testing ivanYudushkin/broken-app against 1.98.0-beta.8+cargoflags=--release for beta-release-1.99-2
[INFO] running `Command { std: "git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FivanYudushkin%2Fbroken-app" "/workspace/builds/worker-2-tc1/source", kill_on_drop: false }`
[INFO] [stderr] Cloning into '/workspace/builds/worker-2-tc1/source'...
[INFO] [stderr] done.
[INFO] started tweaking git repo https://github.com/ivanYudushkin/broken-app
[INFO] finished tweaking git repo https://github.com/ivanYudushkin/broken-app
[INFO] tweaked toml for git repo https://github.com/ivanYudushkin/broken-app written to /workspace/builds/worker-2-tc1/source/Cargo.toml
[INFO] validating manifest of git repo https://github.com/ivanYudushkin/broken-app on toolchain 1.98.0-beta.8
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.98.0-beta.8" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate git repo https://github.com/ivanYudushkin/broken-app 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.8" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-2-tc1/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:8683fc1fc2eb5c9ac98e0d076ab094b2ffac7f99da555d2b6a2e27f346de2ec7" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38
[INFO] running `Command { std: "docker" "start" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", 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" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.8" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", 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" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.8" "build" "--frozen" "--message-format=json" "--release", kill_on_drop: false }`
[INFO] [stderr]    Compiling broken-app v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]  --> src/lib.rs:8:9
[INFO] [stdout]   |
[INFO] [stdout] 8 |     let mut acc = 0;
[INFO] [stdout]   |         ----^^^
[INFO] [stdout]   |         |
[INFO] [stdout]   |         help: remove this `mut`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `values`
[INFO] [stdout]  --> src/lib.rs:7:17
[INFO] [stdout]   |
[INFO] [stdout] 7 | pub fn sum_even(values: &[i64]) -> i64 {
[INFO] [stdout]   |                 ^^^^^^ help: if this is intentional, prefix it with an underscore: `_values`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:60:15
[INFO] [stdout]    |
[INFO] [stdout] 60 |     let val = *raw;
[INFO] [stdout]    |               ^^^^ dereference of raw pointer
[INFO] [stdout]    |
[INFO] [stdout]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stdout] note: an unsafe function restricts its caller, but its body is safe by default
[INFO] [stdout]   --> src/lib.rs:57:1
[INFO] [stdout]    |
[INFO] [stdout] 57 | pub unsafe fn use_after_free() -> i32 {
[INFO] [stdout]    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout]    = note: `#[warn(unsafe_op_in_unsafe_fn)]` (part of `#[warn(rust_2024_compatibility)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: call to unsafe function `std::boxed::Box::<T>::from_raw` is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:61:10
[INFO] [stdout]    |
[INFO] [stdout] 61 |     drop(Box::from_raw(raw));
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^ call to unsafe function
[INFO] [stdout]    |
[INFO] [stdout]    = note: consult the function's documentation for information on how to avoid undefined behavior
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:62:11
[INFO] [stdout]    |
[INFO] [stdout] 62 |     val + *raw
[INFO] [stdout]    |           ^^^^ dereference of raw pointer
[INFO] [stdout]    |
[INFO] [stdout]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0133`.
[INFO] [stdout] 
[INFO] [stderr]     Finished `release` profile [optimized + debuginfo] target(s) in 1.02s
[INFO] running `Command { std: "docker" "inspect" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", 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" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.8" "test" "--frozen" "--no-run" "--message-format=json" "--release", kill_on_drop: false }`
[INFO] [stderr]    Compiling proc-macro2 v1.0.103
[INFO] [stderr]    Compiling quote v1.0.42
[INFO] [stderr]    Compiling unicode-ident v1.0.22
[INFO] [stderr]    Compiling serde_core v1.0.228
[INFO] [stderr]    Compiling crossbeam-utils v0.8.21
[INFO] [stderr]    Compiling zerocopy v0.8.31
[INFO] [stderr]    Compiling serde v1.0.228
[INFO] [stderr]    Compiling autocfg v1.5.0
[INFO] [stderr]    Compiling cfg-if v1.0.4
[INFO] [stderr]    Compiling rayon-core v1.13.0
[INFO] [stderr]    Compiling serde_json v1.0.145
[INFO] [stderr]    Compiling either v1.15.0
[INFO] [stderr]    Compiling libc v0.2.178
[INFO] [stderr]    Compiling anstyle v1.0.13
[INFO] [stderr]    Compiling ryu v1.0.20
[INFO] [stderr]    Compiling clap_lex v0.7.6
[INFO] [stderr]    Compiling plotters-backend v0.3.7
[INFO] [stderr]    Compiling ciborium-io v0.2.2
[INFO] [stderr]    Compiling itoa v1.0.15
[INFO] [stderr]    Compiling memchr v2.7.6
[INFO] [stderr]    Compiling regex-syntax v0.8.8
[INFO] [stderr]    Compiling clap_builder v4.5.53
[INFO] [stderr]    Compiling same-file v1.0.6
[INFO] [stderr]    Compiling cast v0.3.0
[INFO] [stderr]    Compiling once_cell v1.21.3
[INFO] [stderr]    Compiling num-traits v0.2.19
[INFO] [stderr]    Compiling walkdir v2.5.0
[INFO] [stderr]    Compiling itertools v0.10.5
[INFO] [stderr]    Compiling anes v0.1.6
[INFO] [stderr]    Compiling oorandom v11.1.5
[INFO] [stderr]    Compiling plotters-svg v0.3.7
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]  --> src/lib.rs:8:9
[INFO] [stdout]   |
[INFO] [stdout] 8 |     let mut acc = 0;
[INFO] [stdout]   |         ----^^^
[INFO] [stdout]   |         |
[INFO] [stdout]   |         help: remove this `mut`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `values`
[INFO] [stdout]  --> src/lib.rs:7:17
[INFO] [stdout]   |
[INFO] [stdout] 7 | pub fn sum_even(values: &[i64]) -> i64 {
[INFO] [stdout]   |                 ^^^^^^ help: if this is intentional, prefix it with an underscore: `_values`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:60:15
[INFO] [stdout]    |
[INFO] [stdout] 60 |     let val = *raw;
[INFO] [stdout]    |               ^^^^ dereference of raw pointer
[INFO] [stdout]    |
[INFO] [stdout]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stdout] note: an unsafe function restricts its caller, but its body is safe by default
[INFO] [stdout]   --> src/lib.rs:57:1
[INFO] [stdout]    |
[INFO] [stdout] 57 | pub unsafe fn use_after_free() -> i32 {
[INFO] [stdout]    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout]    = note: `#[warn(unsafe_op_in_unsafe_fn)]` (part of `#[warn(rust_2024_compatibility)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: call to unsafe function `std::boxed::Box::<T>::from_raw` is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:61:10
[INFO] [stdout]    |
[INFO] [stdout] 61 |     drop(Box::from_raw(raw));
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^ call to unsafe function
[INFO] [stdout]    |
[INFO] [stdout]    = note: consult the function's documentation for information on how to avoid undefined behavior
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:62:11
[INFO] [stdout]    |
[INFO] [stdout] 62 |     val + *raw
[INFO] [stdout]    |           ^^^^ dereference of raw pointer
[INFO] [stdout]    |
[INFO] [stdout]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0133`.
[INFO] [stdout] 
[INFO] [stderr]    Compiling syn v2.0.111
[INFO] [stderr]    Compiling crossbeam-epoch v0.9.18
[INFO] [stderr]    Compiling crossbeam-deque v0.8.6
[INFO] [stderr]    Compiling plotters v0.3.7
[INFO] [stderr]    Compiling is-terminal v0.4.17
[INFO] [stderr]    Compiling regex-automata v0.4.13
[INFO] [stderr]    Compiling rayon v1.11.0
[INFO] [stderr]    Compiling criterion-plot v0.5.0
[INFO] [stderr]    Compiling clap v4.5.53
[INFO] [stderr]    Compiling regex v1.12.2
[INFO] [stderr]    Compiling zerocopy-derive v0.8.31
[INFO] [stderr]    Compiling serde_derive v1.0.228
[INFO] [stderr]    Compiling tinytemplate v1.2.1
[INFO] [stderr]    Compiling half v2.7.1
[INFO] [stderr]    Compiling ciborium-ll v0.2.2
[INFO] [stderr]    Compiling ciborium v0.2.2
[INFO] [stderr]    Compiling criterion v0.5.1
[INFO] [stderr]    Compiling broken-app v0.1.0 (/opt/rustwide/workdir)
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout]  --> src/lib.rs:8:9
[INFO] [stdout]   |
[INFO] [stdout] 8 |     let mut acc = 0;
[INFO] [stdout]   |         ----^^^
[INFO] [stdout]   |         |
[INFO] [stdout]   |         help: remove this `mut`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: unused variable: `values`
[INFO] [stdout]  --> src/lib.rs:7:17
[INFO] [stdout]   |
[INFO] [stdout] 7 | pub fn sum_even(values: &[i64]) -> i64 {
[INFO] [stdout]   |                 ^^^^^^ help: if this is intentional, prefix it with an underscore: `_values`
[INFO] [stdout]   |
[INFO] [stdout]   = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:60:15
[INFO] [stdout]    |
[INFO] [stdout] 60 |     let val = *raw;
[INFO] [stdout]    |               ^^^^ dereference of raw pointer
[INFO] [stdout]    |
[INFO] [stdout]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stdout] note: an unsafe function restricts its caller, but its body is safe by default
[INFO] [stdout]   --> src/lib.rs:57:1
[INFO] [stdout]    |
[INFO] [stdout] 57 | pub unsafe fn use_after_free() -> i32 {
[INFO] [stdout]    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout]    = note: `#[warn(unsafe_op_in_unsafe_fn)]` (part of `#[warn(rust_2024_compatibility)]`) on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: call to unsafe function `std::boxed::Box::<T>::from_raw` is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:61:10
[INFO] [stdout]    |
[INFO] [stdout] 61 |     drop(Box::from_raw(raw));
[INFO] [stdout]    |          ^^^^^^^^^^^^^^^^^^ call to unsafe function
[INFO] [stdout]    |
[INFO] [stdout]    = note: consult the function's documentation for information on how to avoid undefined behavior
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stdout]   --> src/lib.rs:62:11
[INFO] [stdout]    |
[INFO] [stdout] 62 |     val + *raw
[INFO] [stdout]    |           ^^^^ dereference of raw pointer
[INFO] [stdout]    |
[INFO] [stdout]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0133`.
[INFO] [stdout] 
[INFO] [stderr]     Finished `release` profile [optimized + debuginfo] target(s) in 1m 09s
[INFO] running `Command { std: "docker" "inspect" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", 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" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38" "/opt/rustwide/cargo-home/bin/cargo" "+1.98.0-beta.8" "test" "--frozen" "--release", kill_on_drop: false }`
[INFO] [stderr] warning: variable does not need to be mutable
[INFO] [stderr]  --> src/lib.rs:8:9
[INFO] [stderr]   |
[INFO] [stderr] 8 |     let mut acc = 0;
[INFO] [stderr]   |         ----^^^
[INFO] [stderr]   |         |
[INFO] [stderr]   |         help: remove this `mut`
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning: unused variable: `values`
[INFO] [stderr]  --> src/lib.rs:7:17
[INFO] [stderr]   |
[INFO] [stderr] 7 | pub fn sum_even(values: &[i64]) -> i64 {
[INFO] [stderr]   |                 ^^^^^^ help: if this is intentional, prefix it with an underscore: `_values`
[INFO] [stderr]   |
[INFO] [stderr]   = note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stderr]   --> src/lib.rs:60:15
[INFO] [stderr]    |
[INFO] [stderr] 60 |     let val = *raw;
[INFO] [stderr]    |               ^^^^ dereference of raw pointer
[INFO] [stderr]    |
[INFO] [stderr]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stderr] note: an unsafe function restricts its caller, but its body is safe by default
[INFO] [stderr]   --> src/lib.rs:57:1
[INFO] [stderr]    |
[INFO] [stderr] 57 | pub unsafe fn use_after_free() -> i32 {
[INFO] [stderr]    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stderr]    = note: `#[warn(unsafe_op_in_unsafe_fn)]` (part of `#[warn(rust_2024_compatibility)]`) on by default
[INFO] [stderr] 
[INFO] [stderr] warning[E0133]: call to unsafe function `std::boxed::Box::<T>::from_raw` is unsafe and requires unsafe block
[INFO] [stderr]   --> src/lib.rs:61:10
[INFO] [stderr]    |
[INFO] [stderr] 61 |     drop(Box::from_raw(raw));
[INFO] [stderr]    |          ^^^^^^^^^^^^^^^^^^ call to unsafe function
[INFO] [stderr]    |
[INFO] [stderr]    = note: consult the function's documentation for information on how to avoid undefined behavior
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stderr] 
[INFO] [stderr] warning[E0133]: dereference of raw pointer is unsafe and requires unsafe block
[INFO] [stderr]   --> src/lib.rs:62:11
[INFO] [stderr]    |
[INFO] [stderr] 62 |     val + *raw
[INFO] [stderr]    |           ^^^^ dereference of raw pointer
[INFO] [stderr]    |
[INFO] [stderr]    = note: raw pointers may be null, dangling or unaligned; they can violate aliasing rules and cause data races: all of these are undefined behavior
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/unsafe-op-in-unsafe-fn.html>
[INFO] [stderr] 
[INFO] [stderr] For more information about this error, try `rustc --explain E0133`.
[INFO] [stderr] warning: `broken-app` (lib) generated 5 warnings (run `cargo fix --lib -p broken-app` to apply 3 suggestions)
[INFO] [stderr] warning: `broken-app` (lib test) generated 5 warnings (5 duplicates)
[INFO] [stderr]     Finished `release` profile [optimized + debuginfo] target(s) in 0.13s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/release/deps/broken_app-aedc978ab263616b)
[INFO] [stdout] 
[INFO] [stderr]      Running unittests src/bin/demo.rs (/opt/rustwide/target/release/deps/demo-580c0ff1b3cf8d33)
[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] [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]      Running tests/integration.rs (/opt/rustwide/target/release/deps/integration-1b27a0323c8daa3f)
[INFO] [stdout] 
[INFO] [stdout] running 6 tests
[INFO] [stdout] test counts_non_zero_bytes ... ok
[INFO] [stdout] test fib_small_numbers ... ok
[INFO] [stdout] test dedup_preserves_uniques ... ok
[INFO] [stdout] test normalize_simple ... ok
[INFO] [stdout] test averages_only_positive ... FAILED
[INFO] [stdout] test sums_even_numbers ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- averages_only_positive stdout ----
[INFO] [stdout] 
[INFO] [stdout] thread 'averages_only_positive' (1287) panicked at tests/integration.rs:36:5:
[INFO] [stdout] assertion failed: (broken_app::average_positive(&nums) - 10.0).abs() < f64::EPSILON
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5a6520edb591 - std[97b98282bc616a66]::backtrace_rs::backtrace::libunwind::trace
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5a6520edb591 - std[97b98282bc616a66]::backtrace_rs::backtrace::trace_unsynchronized::<std[97b98282bc616a66]::sys::backtrace::_print_fmt::{closure#1}>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5a6520edb591 - std[97b98282bc616a66]::sys::backtrace::_print_fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:74:9
[INFO] [stdout]    3:     0x5a6520edb591 - <<std[97b98282bc616a66]::sys::backtrace::BacktraceLock>::print::DisplayBacktrace as core[832e9a552fc17241]::fmt::Display>::fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:44:26
[INFO] [stdout]    4:     0x5a6520eefeaa - <core[832e9a552fc17241]::fmt::rt::Argument>::fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/fmt/rt.rs:152:76
[INFO] [stdout]    5:     0x5a6520eefeaa - core[832e9a552fc17241]::fmt::write
[INFO] [stdout]    6:     0x5a6520edfa4c - std[97b98282bc616a66]::io::default_write_fmt::<alloc[3ecab9f82c41dc7d]::vec::Vec<u8>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/io/mod.rs:626:11
[INFO] [stdout]    7:     0x5a6520edfa4c - <alloc[3ecab9f82c41dc7d]::vec::Vec<u8> as std[97b98282bc616a66]::io::Write>::write_fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/io/mod.rs:1730:13
[INFO] [stdout]    8:     0x5a6520eb9cb6 - <std[97b98282bc616a66]::sys::backtrace::BacktraceLock>::print
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:47:9
[INFO] [stdout]    9:     0x5a6520eb9cb6 - std[97b98282bc616a66]::panicking::default_hook::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:292:27
[INFO] [stdout]   10:     0x5a6520ed37b9 - std[97b98282bc616a66]::panicking::default_hook
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:316:9
[INFO] [stdout]   11:     0x5a6520e6d2a0 - <alloc[3ecab9f82c41dc7d]::boxed::Box<dyn for<'a, 'b> core[832e9a552fc17241]::ops::function::Fn<(&'a std[97b98282bc616a66]::panic::PanicHookInfo<'b>,), Output = ()> + core[832e9a552fc17241]::marker::Sync + core[832e9a552fc17241]::marker::Send> as core[832e9a552fc17241]::ops::function::Fn<(&std[97b98282bc616a66]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/alloc/src/boxed.rs:2333:9
[INFO] [stdout]   12:     0x5a6520e6d2a0 - test[39766f3d73431624]::test_main_inner::<test[39766f3d73431624]::test_main_static::{closure#0}>::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:155:21
[INFO] [stdout]   13:     0x5a6520ed3972 - <alloc[3ecab9f82c41dc7d]::boxed::Box<dyn for<'a, 'b> core[832e9a552fc17241]::ops::function::Fn<(&'a std[97b98282bc616a66]::panic::PanicHookInfo<'b>,), Output = ()> + core[832e9a552fc17241]::marker::Sync + core[832e9a552fc17241]::marker::Send> as core[832e9a552fc17241]::ops::function::Fn<(&std[97b98282bc616a66]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/alloc/src/boxed.rs:2333:9
[INFO] [stdout]   14:     0x5a6520ed3972 - std[97b98282bc616a66]::panicking::panic_with_hook
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:823:13
[INFO] [stdout]   15:     0x5a6520eb9d94 - std[97b98282bc616a66]::panicking::panic_handler::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:681:13
[INFO] [stdout]   16:     0x5a6520eb16b9 - std[97b98282bc616a66]::sys::backtrace::__rust_end_short_backtrace::<std[97b98282bc616a66]::panicking::panic_handler::{closure#0}, !>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:182:18
[INFO] [stdout]   17:     0x5a6520eba95d - __rustc[e3d8617bb01b7f69]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:679:5
[INFO] [stdout]   18:     0x5a6520ef05dc - core[832e9a552fc17241]::panicking::panic_fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panicking.rs:80:14
[INFO] [stdout]   19:     0x5a6520ef05a2 - core[832e9a552fc17241]::panicking::panic
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panicking.rs:150:5
[INFO] [stdout]   20:     0x5a6520e603ea - integration[677bfdbe32fc0d96]::averages_only_positive
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/integration.rs:36:5
[INFO] [stdout]   21:     0x5a6520e603ea - integration[677bfdbe32fc0d96]::averages_only_positive::{closure#0}
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/integration.rs:33:28
[INFO] [stdout]   22:     0x5a6520e603ea - <integration[677bfdbe32fc0d96]::averages_only_positive::{closure#0} as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   23:     0x5a6520e605db - <fn() -> core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   24:     0x5a6520e605db - test[39766f3d73431624]::__rust_begin_short_backtrace::<core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>, fn() -> core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:724:18
[INFO] [stdout]   25:     0x5a6520e6dc25 - test[39766f3d73431624]::run_test_in_process::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:747:74
[INFO] [stdout]   26:     0x5a6520e6dc25 - <core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   27:     0x5a6520e6dc25 - std[97b98282bc616a66]::panicking::catch_unwind::do_call::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}>, core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:576:43
[INFO] [stdout]   28:     0x5a6520e6dc25 - std[97b98282bc616a66]::panicking::catch_unwind::<core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>, core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:544:19
[INFO] [stdout]   29:     0x5a6520e6dc25 - std[97b98282bc616a66]::panic::catch_unwind::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}>, core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panic.rs:359:14
[INFO] [stdout]   30:     0x5a6520e6dc25 - test[39766f3d73431624]::run_test_in_process
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:747:27
[INFO] [stdout]   31:     0x5a6520e6dc25 - test[39766f3d73431624]::run_test::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:668:43
[INFO] [stdout]   32:     0x5a6520e686d4 - test[39766f3d73431624]::run_test::{closure#1}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:698:41
[INFO] [stdout]   33:     0x5a6520e686d4 - std[97b98282bc616a66]::sys::backtrace::__rust_begin_short_backtrace::<test[39766f3d73431624]::run_test::{closure#1}, ()>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:166:18
[INFO] [stdout]   34:     0x5a6520e70d72 - std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked::<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/thread/lifecycle.rs:70:13
[INFO] [stdout]   35:     0x5a6520e70d72 - <core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   36:     0x5a6520e70d72 - std[97b98282bc616a66]::panicking::catch_unwind::do_call::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:576:43
[INFO] [stdout]   37:     0x5a6520e70d72 - std[97b98282bc616a66]::panicking::catch_unwind::<(), core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:544:19
[INFO] [stdout]   38:     0x5a6520e70d72 - std[97b98282bc616a66]::panic::catch_unwind::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panic.rs:359:14
[INFO] [stdout]   39:     0x5a6520e70d72 - std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked::<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/thread/lifecycle.rs:68:26
[INFO] [stdout]   40:     0x5a6520e70d72 - <std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1} as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   41:     0x5a6520edae1f - <alloc[3ecab9f82c41dc7d]::boxed::Box<dyn core[832e9a552fc17241]::ops::function::FnOnce<(), Output = ()> + core[832e9a552fc17241]::marker::Send> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/alloc/src/boxed.rs:2319:9
[INFO] [stdout]   42:     0x5a6520edae1f - <std[97b98282bc616a66]::sys::thread::unix::Thread>::new::thread_start
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/thread/unix.rs:123:17
[INFO] [stdout]   43:     0x70e1c8e7907a - <unknown>
[INFO] [stdout]   44:     0x70e1c8f0c534 - clone
[INFO] [stdout]   45:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] ---- sums_even_numbers stdout ----
[INFO] [stdout] 
[INFO] [stdout] thread 'sums_even_numbers' (1292) panicked at tests/integration.rs:7:5:
[INFO] [stdout] assertion `left == right` failed
[INFO] [stdout]   left: 0
[INFO] [stdout]  right: 6
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5a6520edb591 - std[97b98282bc616a66]::backtrace_rs::backtrace::libunwind::trace
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5a6520edb591 - std[97b98282bc616a66]::backtrace_rs::backtrace::trace_unsynchronized::<std[97b98282bc616a66]::sys::backtrace::_print_fmt::{closure#1}>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5a6520edb591 - std[97b98282bc616a66]::sys::backtrace::_print_fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:74:9
[INFO] [stdout]    3:     0x5a6520edb591 - <<std[97b98282bc616a66]::sys::backtrace::BacktraceLock>::print::DisplayBacktrace as core[832e9a552fc17241]::fmt::Display>::fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:44:26
[INFO] [stdout]    4:     0x5a6520eefeaa - <core[832e9a552fc17241]::fmt::rt::Argument>::fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/fmt/rt.rs:152:76
[INFO] [stdout]    5:     0x5a6520eefeaa - core[832e9a552fc17241]::fmt::write
[INFO] [stdout]    6:     0x5a6520edfa4c - std[97b98282bc616a66]::io::default_write_fmt::<alloc[3ecab9f82c41dc7d]::vec::Vec<u8>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/io/mod.rs:626:11
[INFO] [stdout]    7:     0x5a6520edfa4c - <alloc[3ecab9f82c41dc7d]::vec::Vec<u8> as std[97b98282bc616a66]::io::Write>::write_fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/io/mod.rs:1730:13
[INFO] [stdout]    8:     0x5a6520eb9cb6 - <std[97b98282bc616a66]::sys::backtrace::BacktraceLock>::print
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:47:9
[INFO] [stdout]    9:     0x5a6520eb9cb6 - std[97b98282bc616a66]::panicking::default_hook::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:292:27
[INFO] [stdout]   10:     0x5a6520ed37b9 - std[97b98282bc616a66]::panicking::default_hook
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:316:9
[INFO] [stdout]   11:     0x5a6520e6d2a0 - <alloc[3ecab9f82c41dc7d]::boxed::Box<dyn for<'a, 'b> core[832e9a552fc17241]::ops::function::Fn<(&'a std[97b98282bc616a66]::panic::PanicHookInfo<'b>,), Output = ()> + core[832e9a552fc17241]::marker::Sync + core[832e9a552fc17241]::marker::Send> as core[832e9a552fc17241]::ops::function::Fn<(&std[97b98282bc616a66]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/alloc/src/boxed.rs:2333:9
[INFO] [stdout]   12:     0x5a6520e6d2a0 - test[39766f3d73431624]::test_main_inner::<test[39766f3d73431624]::test_main_static::{closure#0}>::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:155:21
[INFO] [stdout]   13:     0x5a6520ed3972 - <alloc[3ecab9f82c41dc7d]::boxed::Box<dyn for<'a, 'b> core[832e9a552fc17241]::ops::function::Fn<(&'a std[97b98282bc616a66]::panic::PanicHookInfo<'b>,), Output = ()> + core[832e9a552fc17241]::marker::Sync + core[832e9a552fc17241]::marker::Send> as core[832e9a552fc17241]::ops::function::Fn<(&std[97b98282bc616a66]::panic::PanicHookInfo,)>>::call
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/alloc/src/boxed.rs:2333:9
[INFO] [stdout]   14:     0x5a6520ed3972 - std[97b98282bc616a66]::panicking::panic_with_hook
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:823:13
[INFO] [stdout]   15:     0x5a6520eb9d62 - std[97b98282bc616a66]::panicking::panic_handler::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:688:13
[INFO] [stdout]   16:     0x5a6520eb16b9 - std[97b98282bc616a66]::sys::backtrace::__rust_end_short_backtrace::<std[97b98282bc616a66]::panicking::panic_handler::{closure#0}, !>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:182:18
[INFO] [stdout]   17:     0x5a6520eba95d - __rustc[e3d8617bb01b7f69]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:679:5
[INFO] [stdout]   18:     0x5a6520ef05dc - core[832e9a552fc17241]::panicking::panic_fmt
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panicking.rs:80:14
[INFO] [stdout]   19:     0x5a6520ef04f3 - core[832e9a552fc17241]::panicking::assert_failed_inner
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panicking.rs:439:17
[INFO] [stdout]   20:     0x5a6520e6007d - core[832e9a552fc17241]::panicking::assert_failed::<i64, i64>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panicking.rs:394:5
[INFO] [stdout]   21:     0x5a6520e60301 - integration[677bfdbe32fc0d96]::sums_even_numbers
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/integration.rs:7:5
[INFO] [stdout]   22:     0x5a6520e60301 - integration[677bfdbe32fc0d96]::sums_even_numbers::{closure#0}
[INFO] [stdout]                                at /opt/rustwide/workdir/tests/integration.rs:4:23
[INFO] [stdout]   23:     0x5a6520e60301 - <integration[677bfdbe32fc0d96]::sums_even_numbers::{closure#0} as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   24:     0x5a6520e605db - <fn() -> core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   25:     0x5a6520e605db - test[39766f3d73431624]::__rust_begin_short_backtrace::<core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>, fn() -> core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:724:18
[INFO] [stdout]   26:     0x5a6520e6dc25 - test[39766f3d73431624]::run_test_in_process::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:747:74
[INFO] [stdout]   27:     0x5a6520e6dc25 - <core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   28:     0x5a6520e6dc25 - std[97b98282bc616a66]::panicking::catch_unwind::do_call::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}>, core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:576:43
[INFO] [stdout]   29:     0x5a6520e6dc25 - std[97b98282bc616a66]::panicking::catch_unwind::<core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>, core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:544:19
[INFO] [stdout]   30:     0x5a6520e6dc25 - std[97b98282bc616a66]::panic::catch_unwind::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<test[39766f3d73431624]::run_test_in_process::{closure#0}>, core[832e9a552fc17241]::result::Result<(), alloc[3ecab9f82c41dc7d]::string::String>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x5a6520e6dc25 - test[39766f3d73431624]::run_test_in_process
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:747:27
[INFO] [stdout]   32:     0x5a6520e6dc25 - test[39766f3d73431624]::run_test::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:668:43
[INFO] [stdout]   33:     0x5a6520e686d4 - test[39766f3d73431624]::run_test::{closure#1}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/test/src/lib.rs:698:41
[INFO] [stdout]   34:     0x5a6520e686d4 - std[97b98282bc616a66]::sys::backtrace::__rust_begin_short_backtrace::<test[39766f3d73431624]::run_test::{closure#1}, ()>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/backtrace.rs:166:18
[INFO] [stdout]   35:     0x5a6520e70d72 - std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked::<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/thread/lifecycle.rs:70:13
[INFO] [stdout]   36:     0x5a6520e70d72 - <core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/panic/unwind_safe.rs:275:9
[INFO] [stdout]   37:     0x5a6520e70d72 - std[97b98282bc616a66]::panicking::catch_unwind::do_call::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:576:43
[INFO] [stdout]   38:     0x5a6520e70d72 - std[97b98282bc616a66]::panicking::catch_unwind::<(), core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panicking.rs:544:19
[INFO] [stdout]   39:     0x5a6520e70d72 - std[97b98282bc616a66]::panic::catch_unwind::<core[832e9a552fc17241]::panic::unwind_safe::AssertUnwindSafe<std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}::{closure#0}>, ()>
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/panic.rs:359:14
[INFO] [stdout]   40:     0x5a6520e70d72 - std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked::<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/thread/lifecycle.rs:68:26
[INFO] [stdout]   41:     0x5a6520e70d72 - <std[97b98282bc616a66]::thread::lifecycle::spawn_unchecked<test[39766f3d73431624]::run_test::{closure#1}, ()>::{closure#1} as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once::{shim:vtable#0}
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/core/src/ops/function.rs:250:5
[INFO] [stdout]   42:     0x5a6520edae1f - <alloc[3ecab9f82c41dc7d]::boxed::Box<dyn core[832e9a552fc17241]::ops::function::FnOnce<(), Output = ()> + core[832e9a552fc17241]::marker::Send> as core[832e9a552fc17241]::ops::function::FnOnce<()>>::call_once
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/alloc/src/boxed.rs:2319:9
[INFO] [stdout]   43:     0x5a6520edae1f - <std[97b98282bc616a66]::sys::thread::unix::Thread>::new::thread_start
[INFO] [stdout]                                at /rustc/04eb0d7194012623e82369b466d5084522957446/library/std/src/sys/thread/unix.rs:123:17
[INFO] [stdout]   44:     0x70e1c8e7907a - <unknown>
[INFO] [stdout]   45:     0x70e1c8f0c534 - clone
[INFO] [stdout]   46:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     averages_only_positive
[INFO] [stdout]     sums_even_numbers
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 4 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.02s
[INFO] [stdout] 
[INFO] [stderr] error: test failed, to rerun pass `--test integration`
[INFO] running `Command { std: "docker" "inspect" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38", kill_on_drop: false }`
[INFO] [stdout] f266d8e6301657e6dc1b050cfa22695644258b5becae4b38afca366263e99f38
