[INFO] fetching crate gbench 1.0.1...
[INFO] testing gbench-1.0.1 against 1.90.0 for beta-1.91-3
[INFO] extracting crate gbench 1.0.1 into /workspace/builds/worker-5-tc1/source
[INFO] started tweaking crates.io crate gbench 1.0.1
[INFO] finished tweaking crates.io crate gbench 1.0.1
[INFO] tweaked toml for crates.io crate gbench 1.0.1 written to /workspace/builds/worker-5-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate gbench 1.0.1 on toolchain 1.90.0
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] [stdout] d76b593d1075794139b04060be02cf84eef10e3a780384e667e1272ad3fbd0d4
[INFO] running `Command { std: "docker" "start" "-a" "d76b593d1075794139b04060be02cf84eef10e3a780384e667e1272ad3fbd0d4", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "d76b593d1075794139b04060be02cf84eef10e3a780384e667e1272ad3fbd0d4", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "d76b593d1075794139b04060be02cf84eef10e3a780384e667e1272ad3fbd0d4", kill_on_drop: false }`
[INFO] [stdout] d76b593d1075794139b04060be02cf84eef10e3a780384e667e1272ad3fbd0d4
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] 75c46d5c828095708872b13ccfb9c154f888aa657965668840f6815fa5b2d42b
[INFO] running `Command { std: "docker" "start" "-a" "75c46d5c828095708872b13ccfb9c154f888aa657965668840f6815fa5b2d42b", kill_on_drop: false }`
[INFO] [stderr]    Compiling gbench v1.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: creating a shared reference to mutable static
[INFO] [stdout]   --> src/global.rs:70:17
[INFO] [stdout]    |
[INFO] [stdout] 70 |     unsafe { (&*GLOBAL_DATA.as_ptr()).program_begin }
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stdout]    = note: `#[warn(static_mut_refs)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a shared reference to mutable static
[INFO] [stdout]   --> src/global.rs:75:17
[INFO] [stdout]    |
[INFO] [stdout] 75 |     unsafe { (&*GLOBAL_DATA.as_ptr()).queue_mutex.lock().unwrap() }
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a mutable reference to mutable static
[INFO] [stdout]   --> src/global.rs:93:32
[INFO] [stdout]    |
[INFO] [stdout] 93 |         let _gd = mem::replace(&mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stdout] help: use `&raw mut` instead to create a raw pointer
[INFO] [stdout]    |
[INFO] [stdout] 93 |         let _gd = mem::replace(&raw mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stdout]    |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a mutable reference to mutable static
[INFO] [stdout]   --> src/global.rs:98:44
[INFO] [stdout]    |
[INFO] [stdout] 98 |     static TID: IdBorrow = unsafe { (&mut *GLOBAL_DATA.as_mut_ptr()).id_storage.gen() };
[INFO] [stdout]    |                                            ^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.51s
[INFO] running `Command { std: "docker" "inspect" "75c46d5c828095708872b13ccfb9c154f888aa657965668840f6815fa5b2d42b", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "75c46d5c828095708872b13ccfb9c154f888aa657965668840f6815fa5b2d42b", kill_on_drop: false }`
[INFO] [stdout] 75c46d5c828095708872b13ccfb9c154f888aa657965668840f6815fa5b2d42b
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }`
[INFO] [stdout] a9978fa453bc9cde837844a72cf72fd609d2560f4908be857dfc136e120bb064
[INFO] running `Command { std: "docker" "start" "-a" "a9978fa453bc9cde837844a72cf72fd609d2560f4908be857dfc136e120bb064", kill_on_drop: false }`
[INFO] [stderr]    Compiling gbench v1.0.1 (/opt/rustwide/workdir)
[INFO] [stdout] warning: creating a shared reference to mutable static
[INFO] [stdout]   --> src/global.rs:70:17
[INFO] [stdout]    |
[INFO] [stdout] 70 |     unsafe { (&*GLOBAL_DATA.as_ptr()).program_begin }
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stdout]    = note: `#[warn(static_mut_refs)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a shared reference to mutable static
[INFO] [stdout]   --> src/global.rs:75:17
[INFO] [stdout]    |
[INFO] [stdout] 75 |     unsafe { (&*GLOBAL_DATA.as_ptr()).queue_mutex.lock().unwrap() }
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a mutable reference to mutable static
[INFO] [stdout]   --> src/global.rs:93:32
[INFO] [stdout]    |
[INFO] [stdout] 93 |         let _gd = mem::replace(&mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stdout] help: use `&raw mut` instead to create a raw pointer
[INFO] [stdout]    |
[INFO] [stdout] 93 |         let _gd = mem::replace(&raw mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stdout]    |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a mutable reference to mutable static
[INFO] [stdout]   --> src/global.rs:98:44
[INFO] [stdout]    |
[INFO] [stdout] 98 |     static TID: IdBorrow = unsafe { (&mut *GLOBAL_DATA.as_mut_ptr()).id_storage.gen() };
[INFO] [stdout]    |                                            ^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a shared reference to mutable static
[INFO] [stdout]   --> src/global.rs:70:17
[INFO] [stdout]    |
[INFO] [stdout] 70 |     unsafe { (&*GLOBAL_DATA.as_ptr()).program_begin }
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stdout]    = note: `#[warn(static_mut_refs)]` on by default
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a shared reference to mutable static
[INFO] [stdout]   --> src/global.rs:75:17
[INFO] [stdout]    |
[INFO] [stdout] 75 |     unsafe { (&*GLOBAL_DATA.as_ptr()).queue_mutex.lock().unwrap() }
[INFO] [stdout]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a mutable reference to mutable static
[INFO] [stdout]   --> src/global.rs:93:32
[INFO] [stdout]    |
[INFO] [stdout] 93 |         let _gd = mem::replace(&mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stdout]    |                                ^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stdout] help: use `&raw mut` instead to create a raw pointer
[INFO] [stdout]    |
[INFO] [stdout] 93 |         let _gd = mem::replace(&raw mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stdout]    |                                 +++
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] warning: creating a mutable reference to mutable static
[INFO] [stdout]   --> src/global.rs:98:44
[INFO] [stdout]    |
[INFO] [stdout] 98 |     static TID: IdBorrow = unsafe { (&mut *GLOBAL_DATA.as_mut_ptr()).id_storage.gen() };
[INFO] [stdout]    |                                            ^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stdout]    |
[INFO] [stdout]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stdout]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.35s
[INFO] running `Command { std: "docker" "inspect" "a9978fa453bc9cde837844a72cf72fd609d2560f4908be857dfc136e120bb064", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "a9978fa453bc9cde837844a72cf72fd609d2560f4908be857dfc136e120bb064", kill_on_drop: false }`
[INFO] [stdout] a9978fa453bc9cde837844a72cf72fd609d2560f4908be857dfc136e120bb064
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-5-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen", kill_on_drop: false }`
[INFO] [stdout] 91d7df58bac32847942b8839553d09f5b808213dab811a0dd931fe2782365a5e
[INFO] running `Command { std: "docker" "start" "-a" "91d7df58bac32847942b8839553d09f5b808213dab811a0dd931fe2782365a5e", kill_on_drop: false }`
[INFO] [stderr] warning: creating a shared reference to mutable static
[INFO] [stderr]   --> src/global.rs:70:17
[INFO] [stderr]    |
[INFO] [stderr] 70 |     unsafe { (&*GLOBAL_DATA.as_ptr()).program_begin }
[INFO] [stderr]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stderr]    |
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stderr]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stderr]    = note: `#[warn(static_mut_refs)]` on by default
[INFO] [stderr] 
[INFO] [stderr] warning: creating a shared reference to mutable static
[INFO] [stderr]   --> src/global.rs:75:17
[INFO] [stderr]    |
[INFO] [stderr] 75 |     unsafe { (&*GLOBAL_DATA.as_ptr()).queue_mutex.lock().unwrap() }
[INFO] [stderr]    |                 ^^^^^^^^^^^^^^^^^^^^ shared reference to mutable static
[INFO] [stderr]    |
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stderr]    = note: shared references to mutable statics are dangerous; it's undefined behavior if the static is mutated or if a mutable reference is created for it while the shared reference lives
[INFO] [stderr] 
[INFO] [stderr] warning: creating a mutable reference to mutable static
[INFO] [stderr]   --> src/global.rs:93:32
[INFO] [stderr]    |
[INFO] [stderr] 93 |         let _gd = mem::replace(&mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stderr]    |                                ^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stderr]    |
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stderr]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stderr] help: use `&raw mut` instead to create a raw pointer
[INFO] [stderr]    |
[INFO] [stderr] 93 |         let _gd = mem::replace(&raw mut GLOBAL_DATA, MaybeUninit::uninit()).assume_init();
[INFO] [stderr]    |                                 +++
[INFO] [stderr] 
[INFO] [stderr] warning: creating a mutable reference to mutable static
[INFO] [stderr]   --> src/global.rs:98:44
[INFO] [stderr]    |
[INFO] [stderr] 98 |     static TID: IdBorrow = unsafe { (&mut *GLOBAL_DATA.as_mut_ptr()).id_storage.gen() };
[INFO] [stderr]    |                                            ^^^^^^^^^^^^^^^^^^^^^^^^ mutable reference to mutable static
[INFO] [stderr]    |
[INFO] [stderr]    = note: for more information, see <https://doc.rust-lang.org/edition-guide/rust-2024/static-mut-references.html>
[INFO] [stderr]    = note: mutable references to mutable statics are dangerous; it's undefined behavior if any other pointer to the static is used or if any other reference is created for the static while the mutable reference lives
[INFO] [stderr] 
[INFO] [stderr] warning: `gbench` (lib) generated 4 warnings
[INFO] [stderr] warning: `gbench` (lib test) generated 4 warnings (4 duplicates)
[INFO] [stderr]     Finished `test` profile [unoptimized + debuginfo] target(s) in 0.04s
[INFO] [stderr]      Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/gbench-ecf6d7dca9a05b9b)
[INFO] [stderr]    Doc-tests gbench
[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] [stdout] 
[INFO] [stdout] running 16 tests
[INFO] [stdout] test src/lib.rs - scope (line 160) ... FAILED
[INFO] [stdout] test src/lib.rs - scope (line 166) ... FAILED
[INFO] [stdout] test src/lib.rs - count (line 359) ... FAILED
[INFO] [stdout] test src/lib.rs - scope (line 176) ... FAILED
[INFO] [stdout] test src/lib.rs - log (line 315) ... FAILED
[INFO] [stdout] test src/lib.rs - instantiate (line 230) ... FAILED
[INFO] [stdout] test src/lib.rs - log (line 310) ... FAILED
[INFO] [stdout] test src/lib.rs - count (line 344) ... FAILED
[INFO] [stdout] test src/lib.rs - instantiate (line 240) ... FAILED
[INFO] [stdout] test src/writer.rs - writer::Writer (line 14) ... FAILED
[INFO] [stdout] test src/lib.rs - instantiate (line 250) ... FAILED
[INFO] [stdout] test src/lib.rs - (line 15) ... FAILED
[INFO] [stdout] test src/lib.rs - instantiate (line 265) ... FAILED
[INFO] [stdout] test src/lib.rs - (line 55) ... FAILED
[INFO] [stdout] test src/lib.rs - (line 82) ... FAILED
[INFO] [stderr] error: doctest failed, to rerun pass `--doc`
[INFO] [stdout] test src/lib.rs - (line 37) ... FAILED
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - scope (line 160) stdout ----
[INFO] [stdout] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stdout]  --> src/lib.rs:161:7
[INFO] [stdout]   |
[INFO] [stdout] 1 | scope!(main)
[INFO] [stdout]   |       ^^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: change the delimiters to curly braces
[INFO] [stdout]   |
[INFO] [stdout] 1 - scope!(main)
[INFO] [stdout] 1 + scope!{main}
[INFO] [stdout]   |
[INFO] [stdout] help: add a semicolon
[INFO] [stdout]   |
[INFO] [stdout] 1 | scope!(main);
[INFO] [stdout]   |             +
[INFO] [stdout] 
[INFO] [stdout] error: expected item, found keyword `let`
[INFO] [stdout]  --> src/lib.rs:163:1
[INFO] [stdout]   |
[INFO] [stdout] 3 | let main = TimeScope::new(format!("main"));
[INFO] [stdout]   | ^^^
[INFO] [stdout]   | |
[INFO] [stdout]   | `let` cannot be used for global variables
[INFO] [stdout]   | help: consider using `static` or `const` instead of `let`
[INFO] [stdout]   |
[INFO] [stdout]   = note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 2 previous errors
[INFO] [stdout] 
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - scope (line 166) stdout ----
[INFO] [stdout] error: macros that expand to items must be delimited with braces or followed by a semicolon
[INFO] [stdout]  --> src/lib.rs:167:7
[INFO] [stdout]   |
[INFO] [stdout] 1 | scope!(main | "A {}", 0)
[INFO] [stdout]   |       ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: change the delimiters to curly braces
[INFO] [stdout]   |
[INFO] [stdout] 1 - scope!(main | "A {}", 0)
[INFO] [stdout] 1 + scope!{main | "A {}", 0}
[INFO] [stdout]   |
[INFO] [stdout] help: add a semicolon
[INFO] [stdout]   |
[INFO] [stdout] 1 | scope!(main | "A {}", 0);
[INFO] [stdout]   |                         +
[INFO] [stdout] 
[INFO] [stdout] error: expected item, found keyword `let`
[INFO] [stdout]  --> src/lib.rs:169:1
[INFO] [stdout]   |
[INFO] [stdout] 3 | let main = TimeScope::new(format!("A {}", 0));
[INFO] [stdout]   | ^^^
[INFO] [stdout]   | |
[INFO] [stdout]   | `let` cannot be used for global variables
[INFO] [stdout]   | help: consider using `static` or `const` instead of `let`
[INFO] [stdout]   |
[INFO] [stdout]   = note: for a full list of items that can appear in modules, see <https://doc.rust-lang.org/reference/items.html>
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 2 previous errors
[INFO] [stdout] 
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - count (line 359) stdout ----
[INFO] [stdout] error: missing `struct` for struct definition
[INFO] [stdout]  --> src/lib.rs:360:1
[INFO] [stdout]   |
[INFO] [stdout] 1 | Count {
[INFO] [stdout]   | ^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: add `struct` here to parse `Count` as a struct
[INFO] [stdout]   |
[INFO] [stdout] 1 | struct Count {
[INFO] [stdout]   | ++++++
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 1 previous error
[INFO] [stdout] 
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - scope (line 176) stdout ----
[INFO] [stdout] error: cannot find macro `scope` in this scope
[INFO] [stdout]   --> src/lib.rs:187:5
[INFO] [stdout]    |
[INFO] [stdout] 13 |     scope!(i2 | "Less important subtask");
[INFO] [stdout]    |     ^^^^^
[INFO] [stdout]    |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]    |
[INFO] [stdout]  2 + use gbench::scope;
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] error: cannot find macro `scope` in this scope
[INFO] [stdout]  --> src/lib.rs:182:5
[INFO] [stdout]   |
[INFO] [stdout] 8 |     scope!(i1 | "Important subtask");
[INFO] [stdout]   |     ^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::scope;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: cannot find macro `scope` in this scope
[INFO] [stdout]  --> src/lib.rs:179:1
[INFO] [stdout]   |
[INFO] [stdout] 5 | scope!(imp | "An important task");
[INFO] [stdout]   | ^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::scope;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find value `imp` in this scope
[INFO] [stdout]   --> src/lib.rs:194:6
[INFO] [stdout]    |
[INFO] [stdout] 20 | drop(imp);
[INFO] [stdout]    |      ^^^ not found in this scope
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `do_work` in this scope
[INFO] [stdout]  --> src/lib.rs:183:5
[INFO] [stdout]   |
[INFO] [stdout] 9 |     do_work();
[INFO] [stdout]   |     ^^^^^^^ not found in this scope
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function `do_other_work` in this scope
[INFO] [stdout]   --> src/lib.rs:188:5
[INFO] [stdout]    |
[INFO] [stdout] 14 |     do_other_work();
[INFO] [stdout]    |     ^^^^^^^^^^^^^ not found in this scope
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 6 previous errors
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - log (line 315) stdout ----
[INFO] [stdout] error: expected expression, found `,`
[INFO] [stdout]  --> src/lib.rs:318:32
[INFO] [stdout]   |
[INFO] [stdout] 3 | Log {
[INFO] [stdout]   | --- while parsing this struct
[INFO] [stdout] 4 |     log: "A: 0",
[INFO] [stdout] 5 |     ts: /* event's timestamp */,
[INFO] [stdout]   |                                ^ expected expression
[INFO] [stdout] 
[INFO] [stdout] error: expected expression, found `,`
[INFO] [stdout]  --> src/lib.rs:319:43
[INFO] [stdout]   |
[INFO] [stdout] 3 | Log {
[INFO] [stdout]   | --- while parsing this struct
[INFO] [stdout] ...
[INFO] [stdout] 6 |     tid: /* event's thread of execution */,
[INFO] [stdout]   |                                           ^ expected expression
[INFO] [stdout] 
[INFO] [stdout] error[E0422]: cannot find struct, variant or union type `Log` in this scope
[INFO] [stdout]  --> src/lib.rs:316:1
[INFO] [stdout]   |
[INFO] [stdout] 3 | Log {
[INFO] [stdout]   | ^^^ not found in this scope
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this variant
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::BenchData::Log;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 3 previous errors
[INFO] [stdout] 
[INFO] [stdout] For more information about this error, try `rustc --explain E0422`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - instantiate (line 230) stdout ----
[INFO] [stdout] error: cannot find macro `instantiate` in this scope
[INFO] [stdout]  --> src/lib.rs:232:1
[INFO] [stdout]   |
[INFO] [stdout] 5 | instantiate!(ChromeTracing("target/bench"));
[INFO] [stdout]   | ^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::instantiate;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `Instantiator`
[INFO] [stdout]  --> src/lib.rs:234:31
[INFO] [stdout]   |
[INFO] [stdout] 7 | let __gbench_instantiator__ = Instantiator::new(vec![Box::new(ChromeTracing("target/bench"))]);
[INFO] [stdout]   |                               ^^^^^^^^^^^^ use of undeclared type `Instantiator`
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this struct
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::Instantiator;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function, tuple struct or tuple variant `ChromeTracing` in this scope
[INFO] [stdout]  --> src/lib.rs:234:63
[INFO] [stdout]   |
[INFO] [stdout] 7 | let __gbench_instantiator__ = Instantiator::new(vec![Box::new(ChromeTracing("target/bench"))]);
[INFO] [stdout]   |                                                               ^^^^^^^^^^^^^ not found in this scope
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this tuple struct
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::ChromeTracing;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 3 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0425, E0433.
[INFO] [stdout] For more information about an error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - log (line 310) stdout ----
[INFO] [stdout] error: cannot find macro `log` in this scope
[INFO] [stdout]  --> src/lib.rs:312:1
[INFO] [stdout]   |
[INFO] [stdout] 4 | log!("A: {}", a);
[INFO] [stdout]   | ^^^
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::log;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 1 previous error
[INFO] [stdout] 
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - count (line 344) stdout ----
[INFO] [stdout] error: cannot find macro `count` in this scope
[INFO] [stdout]  --> src/lib.rs:346:1
[INFO] [stdout]   |
[INFO] [stdout] 4 | count!(
[INFO] [stdout]   | ^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::count;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 1 previous error
[INFO] [stdout] 
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - instantiate (line 240) stdout ----
[INFO] [stdout] error: cannot find macro `instantiate` in this scope
[INFO] [stdout]  --> src/lib.rs:241:1
[INFO] [stdout]   |
[INFO] [stdout] 3 | instantiate!(ginst | ChromeTracing("target/bench"));
[INFO] [stdout]   | ^^^^^^^^^^^
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this macro
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::instantiate;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: failed to resolve: use of undeclared type `Instantiator`
[INFO] [stdout]  --> src/lib.rs:243:13
[INFO] [stdout]   |
[INFO] [stdout] 5 | let ginst = Instantiator::new(vec![Box::new(ChromeTracing("target/bench"))]);
[INFO] [stdout]   |             ^^^^^^^^^^^^ use of undeclared type `Instantiator`
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this struct
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::Instantiator;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0425]: cannot find function, tuple struct or tuple variant `ChromeTracing` in this scope
[INFO] [stdout]  --> src/lib.rs:243:45
[INFO] [stdout]   |
[INFO] [stdout] 5 | let ginst = Instantiator::new(vec![Box::new(ChromeTracing("target/bench"))]);
[INFO] [stdout]   |                                             ^^^^^^^^^^^^^ not found in this scope
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this tuple struct
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::ChromeTracing;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 3 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0425, E0433.
[INFO] [stdout] For more information about an error, try `rustc --explain E0425`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/writer.rs - writer::Writer (line 14) stdout ----
[INFO] [stdout] error[E0405]: cannot find trait `Writer` in this scope
[INFO] [stdout]  --> src/writer.rs:17:6
[INFO] [stdout]   |
[INFO] [stdout] 5 | impl Writer for QueueLogger {
[INFO] [stdout]   |      ^^^^^^ not found in this scope
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this trait
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::Writer;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error[E0412]: cannot find type `BenchData` in this scope
[INFO] [stdout]  --> src/writer.rs:18:30
[INFO] [stdout]   |
[INFO] [stdout] 6 |     fn end(&self, data: &Vec<BenchData>) {
[INFO] [stdout]   |                              ^^^^^^^^^ not found in this scope
[INFO] [stdout]   |
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]   |
[INFO] [stdout] 2 + use gbench::BenchData;
[INFO] [stdout]   |
[INFO] [stdout] 
[INFO] [stdout] error: aborting due to 2 previous errors
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0405, E0412.
[INFO] [stdout] For more information about an error, try `rustc --explain E0405`.
[INFO] [stdout] Couldn't compile the test.
[INFO] [stdout] ---- src/lib.rs - instantiate (line 250) stdout ----
[INFO] [stdout] Test executable failed (exit status: 101).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] 
[INFO] [stdout] thread 'main' panicked at src/writer.rs:95:10:
[INFO] [stdout] called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5792578cf4f2 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5792578cf4f2 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5792578cf4f2 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x5792578cf4f2 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x5792578eec43 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x5792578eec43 - core::fmt::write::h8a494366950f23bb
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x5792578cd163 - std::io::default_write_fmt::ha27fbccbc65eb6fa
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x5792578cd163 - std::io::Write::write_fmt::h6556609fca33d0b1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x5792578cf342 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x5792578d03d3 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
[INFO] [stdout]   10:     0x5792578d01b5 - std::panicking::default_hook::h2c66fc99e962531d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:327:9
[INFO] [stdout]   11:     0x5792578d0ca5 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13
[INFO] [stdout]   12:     0x5792578d0b3a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
[INFO] [stdout]   13:     0x5792578cf9e9 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   14:     0x5792578d07cd - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
[INFO] [stdout]   15:     0x5792578ed150 - core::panicking::panic_fmt::h62f63d096dd276af
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
[INFO] [stdout]   16:     0x5792578ed586 - core::result::unwrap_failed::h95bc3f5a607b2c95
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
[INFO] [stdout]   17:     0x5792578a7027 - core::result::Result<T,E>::unwrap::ha8b9793ec116c715
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23
[INFO] [stdout]   18:     0x5792578a7027 - <gbench::writer::ChromeTracing as gbench::writer::Writer>::end::h2c47f0432aa7ad74
[INFO] [stdout]                                at /opt/rustwide/workdir/src/writer.rs:95:10
[INFO] [stdout]   19:     0x5792578a8d38 - gbench::global::end::h4a713b9d99b6b6e0
[INFO] [stdout]                                at /opt/rustwide/workdir/src/global.rs:88:16
[INFO] [stdout]   20:     0x5792578a5ddc - gbench::bench::Instantiator::end::h7209df63b97f888e
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:106:13
[INFO] [stdout]   21:     0x5792578a5deb - <gbench::bench::Instantiator as core::ops::drop::Drop>::drop::h01242338469e15a8
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:113:14
[INFO] [stdout]   22:     0x5792578a4991 - core::ptr::drop_in_place<gbench::bench::Instantiator>::hd8a1971003358f4f
[INFO] [stdout]   23:     0x5792578a527b - rust_out::main::h2d10ba762d3f8adf
[INFO] [stdout]   24:     0x5792578a48d3 - core::ops::function::FnOnce::call_once::h89333dd4ac8e03fc
[INFO] [stdout]   25:     0x5792578a4856 - std::sys::backtrace::__rust_begin_short_backtrace::h8a10de1e92516da1
[INFO] [stdout]   26:     0x5792578a4839 - std::rt::lang_start::{{closure}}::h0af3a8cb06b34c3e
[INFO] [stdout]   27:     0x5792578cacc0 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h638295a043b40957
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:290:21
[INFO] [stdout]   28:     0x5792578cacc0 - std::panicking::catch_unwind::do_call::hbd68098bdea1ca50
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   29:     0x5792578cacc0 - std::panicking::catch_unwind::h50591d85bf847c7c
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   30:     0x5792578cacc0 - std::panic::catch_unwind::h2487b4c4f2ae22c6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x5792578cacc0 - std::rt::lang_start_internal::{{closure}}::h61f0945cc6c9a811
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:175:24
[INFO] [stdout]   32:     0x5792578cacc0 - std::panicking::catch_unwind::do_call::h34b9c3722acd6bd1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   33:     0x5792578cacc0 - std::panicking::catch_unwind::hf9a822ea043fb0d6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   34:     0x5792578cacc0 - std::panic::catch_unwind::h5b3cac802237ed89
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   35:     0x5792578cacc0 - std::rt::lang_start_internal::h34f9328d113fd60a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:171:5
[INFO] [stdout]   36:     0x5792578a4821 - std::rt::lang_start::h8f736fe0a226e45f
[INFO] [stdout]   37:     0x5792578a52d5 - main
[INFO] [stdout]   38:     0x7f7845b081ca - <unknown>
[INFO] [stdout]   39:     0x7f7845b0828b - __libc_start_main
[INFO] [stdout]   40:     0x5792578a4735 - _start
[INFO] [stdout]   41:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - (line 15) stdout ----
[INFO] [stdout] Test executable failed (exit status: 101).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] 
[INFO] [stdout] thread 'main' panicked at src/writer.rs:95:10:
[INFO] [stdout] called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5dc4df2674f2 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5dc4df2674f2 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5dc4df2674f2 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x5dc4df2674f2 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x5dc4df286c43 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x5dc4df286c43 - core::fmt::write::h8a494366950f23bb
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x5dc4df265163 - std::io::default_write_fmt::ha27fbccbc65eb6fa
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x5dc4df265163 - std::io::Write::write_fmt::h6556609fca33d0b1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x5dc4df267342 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x5dc4df2683d3 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
[INFO] [stdout]   10:     0x5dc4df2681b5 - std::panicking::default_hook::h2c66fc99e962531d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:327:9
[INFO] [stdout]   11:     0x5dc4df268ca5 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13
[INFO] [stdout]   12:     0x5dc4df268b3a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
[INFO] [stdout]   13:     0x5dc4df2679e9 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   14:     0x5dc4df2687cd - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
[INFO] [stdout]   15:     0x5dc4df285150 - core::panicking::panic_fmt::h62f63d096dd276af
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
[INFO] [stdout]   16:     0x5dc4df285586 - core::result::unwrap_failed::h95bc3f5a607b2c95
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
[INFO] [stdout]   17:     0x5dc4df23f027 - core::result::Result<T,E>::unwrap::ha8b9793ec116c715
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23
[INFO] [stdout]   18:     0x5dc4df23f027 - <gbench::writer::ChromeTracing as gbench::writer::Writer>::end::h2c47f0432aa7ad74
[INFO] [stdout]                                at /opt/rustwide/workdir/src/writer.rs:95:10
[INFO] [stdout]   19:     0x5dc4df240d38 - gbench::global::end::h4a713b9d99b6b6e0
[INFO] [stdout]                                at /opt/rustwide/workdir/src/global.rs:88:16
[INFO] [stdout]   20:     0x5dc4df23dddc - gbench::bench::Instantiator::end::h7209df63b97f888e
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:106:13
[INFO] [stdout]   21:     0x5dc4df23ddeb - <gbench::bench::Instantiator as core::ops::drop::Drop>::drop::h01242338469e15a8
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:113:14
[INFO] [stdout]   22:     0x5dc4df23c991 - core::ptr::drop_in_place<gbench::bench::Instantiator>::hd8a1971003358f4f
[INFO] [stdout]   23:     0x5dc4df23d27b - rust_out::main::h2d10ba762d3f8adf
[INFO] [stdout]   24:     0x5dc4df23c8d3 - core::ops::function::FnOnce::call_once::h89333dd4ac8e03fc
[INFO] [stdout]   25:     0x5dc4df23c856 - std::sys::backtrace::__rust_begin_short_backtrace::h8a10de1e92516da1
[INFO] [stdout]   26:     0x5dc4df23c839 - std::rt::lang_start::{{closure}}::h0af3a8cb06b34c3e
[INFO] [stdout]   27:     0x5dc4df262cc0 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h638295a043b40957
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:290:21
[INFO] [stdout]   28:     0x5dc4df262cc0 - std::panicking::catch_unwind::do_call::hbd68098bdea1ca50
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   29:     0x5dc4df262cc0 - std::panicking::catch_unwind::h50591d85bf847c7c
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   30:     0x5dc4df262cc0 - std::panic::catch_unwind::h2487b4c4f2ae22c6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x5dc4df262cc0 - std::rt::lang_start_internal::{{closure}}::h61f0945cc6c9a811
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:175:24
[INFO] [stdout]   32:     0x5dc4df262cc0 - std::panicking::catch_unwind::do_call::h34b9c3722acd6bd1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   33:     0x5dc4df262cc0 - std::panicking::catch_unwind::hf9a822ea043fb0d6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   34:     0x5dc4df262cc0 - std::panic::catch_unwind::h5b3cac802237ed89
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   35:     0x5dc4df262cc0 - std::rt::lang_start_internal::h34f9328d113fd60a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:171:5
[INFO] [stdout]   36:     0x5dc4df23c821 - std::rt::lang_start::h8f736fe0a226e45f
[INFO] [stdout]   37:     0x5dc4df23d2d5 - main
[INFO] [stdout]   38:     0x741b306e11ca - <unknown>
[INFO] [stdout]   39:     0x741b306e128b - __libc_start_main
[INFO] [stdout]   40:     0x5dc4df23c735 - _start
[INFO] [stdout]   41:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - instantiate (line 265) stdout ----
[INFO] [stdout] Test executable failed (exit status: 101).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] 
[INFO] [stdout] thread 'main' panicked at src/writer.rs:95:10:
[INFO] [stdout] called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x59e88496e502 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x59e88496e502 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x59e88496e502 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x59e88496e502 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x59e88498dc53 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x59e88498dc53 - core::fmt::write::h8a494366950f23bb
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x59e88496c173 - std::io::default_write_fmt::ha27fbccbc65eb6fa
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x59e88496c173 - std::io::Write::write_fmt::h6556609fca33d0b1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x59e88496e352 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x59e88496f3e3 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
[INFO] [stdout]   10:     0x59e88496f1c5 - std::panicking::default_hook::h2c66fc99e962531d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:327:9
[INFO] [stdout]   11:     0x59e88496fcb5 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13
[INFO] [stdout]   12:     0x59e88496fb4a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
[INFO] [stdout]   13:     0x59e88496e9f9 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   14:     0x59e88496f7dd - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
[INFO] [stdout]   15:     0x59e88498c160 - core::panicking::panic_fmt::h62f63d096dd276af
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
[INFO] [stdout]   16:     0x59e88498c596 - core::result::unwrap_failed::h95bc3f5a607b2c95
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
[INFO] [stdout]   17:     0x59e884946037 - core::result::Result<T,E>::unwrap::ha8b9793ec116c715
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23
[INFO] [stdout]   18:     0x59e884946037 - <gbench::writer::ChromeTracing as gbench::writer::Writer>::end::h2c47f0432aa7ad74
[INFO] [stdout]                                at /opt/rustwide/workdir/src/writer.rs:95:10
[INFO] [stdout]   19:     0x59e884947d48 - gbench::global::end::h4a713b9d99b6b6e0
[INFO] [stdout]                                at /opt/rustwide/workdir/src/global.rs:88:16
[INFO] [stdout]   20:     0x59e884944dec - gbench::bench::Instantiator::end::h7209df63b97f888e
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:106:13
[INFO] [stdout]   21:     0x59e88494427f - rust_out::main::h2d10ba762d3f8adf
[INFO] [stdout]   22:     0x59e8849438d3 - core::ops::function::FnOnce::call_once::h89333dd4ac8e03fc
[INFO] [stdout]   23:     0x59e884943856 - std::sys::backtrace::__rust_begin_short_backtrace::h8a10de1e92516da1
[INFO] [stdout]   24:     0x59e884943839 - std::rt::lang_start::{{closure}}::h0af3a8cb06b34c3e
[INFO] [stdout]   25:     0x59e884969cd0 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h638295a043b40957
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:290:21
[INFO] [stdout]   26:     0x59e884969cd0 - std::panicking::catch_unwind::do_call::hbd68098bdea1ca50
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   27:     0x59e884969cd0 - std::panicking::catch_unwind::h50591d85bf847c7c
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   28:     0x59e884969cd0 - std::panic::catch_unwind::h2487b4c4f2ae22c6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   29:     0x59e884969cd0 - std::rt::lang_start_internal::{{closure}}::h61f0945cc6c9a811
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:175:24
[INFO] [stdout]   30:     0x59e884969cd0 - std::panicking::catch_unwind::do_call::h34b9c3722acd6bd1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   31:     0x59e884969cd0 - std::panicking::catch_unwind::hf9a822ea043fb0d6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   32:     0x59e884969cd0 - std::panic::catch_unwind::h5b3cac802237ed89
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   33:     0x59e884969cd0 - std::rt::lang_start_internal::h34f9328d113fd60a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:171:5
[INFO] [stdout]   34:     0x59e884943821 - std::rt::lang_start::h8f736fe0a226e45f
[INFO] [stdout]   35:     0x59e8849442e5 - main
[INFO] [stdout]   36:     0x7405260171ca - <unknown>
[INFO] [stdout]   37:     0x74052601728b - __libc_start_main
[INFO] [stdout]   38:     0x59e884943735 - _start
[INFO] [stdout]   39:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - (line 55) stdout ----
[INFO] [stdout] Test executable failed (exit status: 101).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] 
[INFO] [stdout] thread 'main' panicked at src/writer.rs:95:10:
[INFO] [stdout] called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5b59c6317a12 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5b59c6317a12 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5b59c6317a12 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x5b59c6317a12 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x5b59c6337873 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x5b59c6337873 - core::fmt::write::h8a494366950f23bb
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x5b59c6315563 - std::io::default_write_fmt::ha27fbccbc65eb6fa
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x5b59c6315563 - std::io::Write::write_fmt::h6556609fca33d0b1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x5b59c6317862 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x5b59c63188f3 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
[INFO] [stdout]   10:     0x5b59c63186d5 - std::panicking::default_hook::h2c66fc99e962531d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:327:9
[INFO] [stdout]   11:     0x5b59c63191c5 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13
[INFO] [stdout]   12:     0x5b59c631905a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
[INFO] [stdout]   13:     0x5b59c6317f09 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   14:     0x5b59c6318ced - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
[INFO] [stdout]   15:     0x5b59c6335d80 - core::panicking::panic_fmt::h62f63d096dd276af
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
[INFO] [stdout]   16:     0x5b59c63361b6 - core::result::unwrap_failed::h95bc3f5a607b2c95
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
[INFO] [stdout]   17:     0x5b59c62daea7 - core::result::Result<T,E>::unwrap::ha8b9793ec116c715
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23
[INFO] [stdout]   18:     0x5b59c62daea7 - <gbench::writer::ChromeTracing as gbench::writer::Writer>::end::h2c47f0432aa7ad74
[INFO] [stdout]                                at /opt/rustwide/workdir/src/writer.rs:95:10
[INFO] [stdout]   19:     0x5b59c62dfe88 - gbench::global::end::h4a713b9d99b6b6e0
[INFO] [stdout]                                at /opt/rustwide/workdir/src/global.rs:88:16
[INFO] [stdout]   20:     0x5b59c62d9c5c - gbench::bench::Instantiator::end::h7209df63b97f888e
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:106:13
[INFO] [stdout]   21:     0x5b59c62d9c6b - <gbench::bench::Instantiator as core::ops::drop::Drop>::drop::h01242338469e15a8
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:113:14
[INFO] [stdout]   22:     0x5b59c62d6801 - core::ptr::drop_in_place<gbench::bench::Instantiator>::hd8a1971003358f4f
[INFO] [stdout]   23:     0x5b59c62d73a0 - rust_out::main::h2d10ba762d3f8adf
[INFO] [stdout]   24:     0x5b59c62d6743 - core::ops::function::FnOnce::call_once::h89333dd4ac8e03fc
[INFO] [stdout]   25:     0x5b59c62d66c6 - std::sys::backtrace::__rust_begin_short_backtrace::h8a10de1e92516da1
[INFO] [stdout]   26:     0x5b59c62d66a9 - std::rt::lang_start::{{closure}}::h0af3a8cb06b34c3e
[INFO] [stdout]   27:     0x5b59c63130c0 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h638295a043b40957
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:290:21
[INFO] [stdout]   28:     0x5b59c63130c0 - std::panicking::catch_unwind::do_call::hbd68098bdea1ca50
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   29:     0x5b59c63130c0 - std::panicking::catch_unwind::h50591d85bf847c7c
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   30:     0x5b59c63130c0 - std::panic::catch_unwind::h2487b4c4f2ae22c6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x5b59c63130c0 - std::rt::lang_start_internal::{{closure}}::h61f0945cc6c9a811
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:175:24
[INFO] [stdout]   32:     0x5b59c63130c0 - std::panicking::catch_unwind::do_call::h34b9c3722acd6bd1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   33:     0x5b59c63130c0 - std::panicking::catch_unwind::hf9a822ea043fb0d6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   34:     0x5b59c63130c0 - std::panic::catch_unwind::h5b3cac802237ed89
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   35:     0x5b59c63130c0 - std::rt::lang_start_internal::h34f9328d113fd60a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:171:5
[INFO] [stdout]   36:     0x5b59c62d6691 - std::rt::lang_start::h8f736fe0a226e45f
[INFO] [stdout]   37:     0x5b59c62d7735 - main
[INFO] [stdout]   38:     0x721b521c71ca - <unknown>
[INFO] [stdout]   39:     0x721b521c728b - __libc_start_main
[INFO] [stdout]   40:     0x5b59c62d65a5 - _start
[INFO] [stdout]   41:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - (line 82) stdout ----
[INFO] [stdout] Test executable failed (exit status: 101).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] 
[INFO] [stdout] thread 'main' panicked at src/writer.rs:95:10:
[INFO] [stdout] called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x63d431495782 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x63d431495782 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x63d431495782 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x63d431495782 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x63d4314b5643 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x63d4314b5643 - core::fmt::write::h8a494366950f23bb
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x63d4314933f3 - std::io::default_write_fmt::ha27fbccbc65eb6fa
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x63d4314933f3 - std::io::Write::write_fmt::h6556609fca33d0b1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x63d4314955d2 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x63d4314966b3 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
[INFO] [stdout]   10:     0x63d431496495 - std::panicking::default_hook::h2c66fc99e962531d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:327:9
[INFO] [stdout]   11:     0x63d431496fc5 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13
[INFO] [stdout]   12:     0x63d431496e5a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
[INFO] [stdout]   13:     0x63d431495c79 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   14:     0x63d431496aed - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
[INFO] [stdout]   15:     0x63d4314b3b50 - core::panicking::panic_fmt::h62f63d096dd276af
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
[INFO] [stdout]   16:     0x63d4314b3f86 - core::result::unwrap_failed::h95bc3f5a607b2c95
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
[INFO] [stdout]   17:     0x63d43146c397 - core::result::Result<T,E>::unwrap::ha8b9793ec116c715
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23
[INFO] [stdout]   18:     0x63d43146c397 - <gbench::writer::ChromeTracing as gbench::writer::Writer>::end::h2c47f0432aa7ad74
[INFO] [stdout]                                at /opt/rustwide/workdir/src/writer.rs:95:10
[INFO] [stdout]   19:     0x63d43146e0a8 - gbench::global::end::h4a713b9d99b6b6e0
[INFO] [stdout]                                at /opt/rustwide/workdir/src/global.rs:88:16
[INFO] [stdout]   20:     0x63d43146b14c - gbench::bench::Instantiator::end::h7209df63b97f888e
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:106:13
[INFO] [stdout]   21:     0x63d43146b15b - <gbench::bench::Instantiator as core::ops::drop::Drop>::drop::h01242338469e15a8
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:113:14
[INFO] [stdout]   22:     0x63d431467f61 - core::ptr::drop_in_place<gbench::bench::Instantiator>::hd8a1971003358f4f
[INFO] [stdout]   23:     0x63d431469f7b - rust_out::main::h2d10ba762d3f8adf
[INFO] [stdout]   24:     0x63d431467b03 - core::ops::function::FnOnce::call_once::h89333dd4ac8e03fc
[INFO] [stdout]   25:     0x63d431466036 - std::sys::backtrace::__rust_begin_short_backtrace::h8a10de1e92516da1
[INFO] [stdout]   26:     0x63d431465f99 - std::rt::lang_start::{{closure}}::h0af3a8cb06b34c3e
[INFO] [stdout]   27:     0x63d431490590 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h638295a043b40957
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:290:21
[INFO] [stdout]   28:     0x63d431490590 - std::panicking::catch_unwind::do_call::hbd68098bdea1ca50
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   29:     0x63d431490590 - std::panicking::catch_unwind::h50591d85bf847c7c
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   30:     0x63d431490590 - std::panic::catch_unwind::h2487b4c4f2ae22c6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x63d431490590 - std::rt::lang_start_internal::{{closure}}::h61f0945cc6c9a811
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:175:24
[INFO] [stdout]   32:     0x63d431490590 - std::panicking::catch_unwind::do_call::h34b9c3722acd6bd1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   33:     0x63d431490590 - std::panicking::catch_unwind::hf9a822ea043fb0d6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   34:     0x63d431490590 - std::panic::catch_unwind::h5b3cac802237ed89
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   35:     0x63d431490590 - std::rt::lang_start_internal::h34f9328d113fd60a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:171:5
[INFO] [stdout]   36:     0x63d431465f81 - std::rt::lang_start::h8f736fe0a226e45f
[INFO] [stdout]   37:     0x63d43146a645 - main
[INFO] [stdout]   38:     0x73f92e6961ca - <unknown>
[INFO] [stdout]   39:     0x73f92e69628b - __libc_start_main
[INFO] [stdout]   40:     0x63d431465e35 - _start
[INFO] [stdout]   41:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] ---- src/lib.rs - (line 37) stdout ----
[INFO] [stdout] Test executable failed (exit status: 101).
[INFO] [stdout] 
[INFO] [stdout] stderr:
[INFO] [stdout] 
[INFO] [stdout] thread 'main' panicked at src/writer.rs:95:10:
[INFO] [stdout] called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }
[INFO] [stdout] stack backtrace:
[INFO] [stdout]    0:     0x5b52591077f2 - std::backtrace_rs::backtrace::libunwind::trace::h2d45396358f41939
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/libunwind.rs:117:9
[INFO] [stdout]    1:     0x5b52591077f2 - std::backtrace_rs::backtrace::trace_unsynchronized::hffcefc0b67f1d6e2
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/../../backtrace/src/backtrace/mod.rs:66:14
[INFO] [stdout]    2:     0x5b52591077f2 - std::sys::backtrace::_print_fmt::hd72f71d23b436b92
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:66:9
[INFO] [stdout]    3:     0x5b52591077f2 - <std::sys::backtrace::BacktraceLock::print::DisplayBacktrace as core::fmt::Display>::fmt::hdcfcb6d4c8489523
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:39:26
[INFO] [stdout]    4:     0x5b5259126f43 - core::fmt::rt::Argument::fmt::h2c56b3114963061a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/rt.rs:173:76
[INFO] [stdout]    5:     0x5b5259126f43 - core::fmt::write::h8a494366950f23bb
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/fmt/mod.rs:1468:25
[INFO] [stdout]    6:     0x5b5259105463 - std::io::default_write_fmt::ha27fbccbc65eb6fa
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:639:11
[INFO] [stdout]    7:     0x5b5259105463 - std::io::Write::write_fmt::h6556609fca33d0b1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/io/mod.rs:1954:13
[INFO] [stdout]    8:     0x5b5259107642 - std::sys::backtrace::BacktraceLock::print::hb2a626a81e06b2dc
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:42:9
[INFO] [stdout]    9:     0x5b52591086d3 - std::panicking::default_hook::{{closure}}::h4f78485264f12d10
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:300:27
[INFO] [stdout]   10:     0x5b52591084b5 - std::panicking::default_hook::h2c66fc99e962531d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:327:9
[INFO] [stdout]   11:     0x5b5259108fa5 - std::panicking::rust_panic_with_hook::h33ac55f64bbd807d
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:833:13
[INFO] [stdout]   12:     0x5b5259108e3a - std::panicking::begin_panic_handler::{{closure}}::h30e7cb89678a57fe
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:706:13
[INFO] [stdout]   13:     0x5b5259107ce9 - std::sys::backtrace::__rust_end_short_backtrace::hed60f27456c16ced
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/sys/backtrace.rs:174:18
[INFO] [stdout]   14:     0x5b5259108acd - __rustc[de2ca18b4c54d5b8]::rust_begin_unwind
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:697:5
[INFO] [stdout]   15:     0x5b5259125450 - core::panicking::panic_fmt::h62f63d096dd276af
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/panicking.rs:75:14
[INFO] [stdout]   16:     0x5b5259125886 - core::result::unwrap_failed::h95bc3f5a607b2c95
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1765:5
[INFO] [stdout]   17:     0x5b52590df2e7 - core::result::Result<T,E>::unwrap::ha8b9793ec116c715
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/result.rs:1167:23
[INFO] [stdout]   18:     0x5b52590df2e7 - <gbench::writer::ChromeTracing as gbench::writer::Writer>::end::h2c47f0432aa7ad74
[INFO] [stdout]                                at /opt/rustwide/workdir/src/writer.rs:95:10
[INFO] [stdout]   19:     0x5b52590e0ff8 - gbench::global::end::h4a713b9d99b6b6e0
[INFO] [stdout]                                at /opt/rustwide/workdir/src/global.rs:88:16
[INFO] [stdout]   20:     0x5b52590de09c - gbench::bench::Instantiator::end::h7209df63b97f888e
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:106:13
[INFO] [stdout]   21:     0x5b52590de0ab - <gbench::bench::Instantiator as core::ops::drop::Drop>::drop::h01242338469e15a8
[INFO] [stdout]                                at /opt/rustwide/workdir/src/bench.rs:113:14
[INFO] [stdout]   22:     0x5b52590dca61 - core::ptr::drop_in_place<gbench::bench::Instantiator>::hd8a1971003358f4f
[INFO] [stdout]   23:     0x5b52590dd357 - rust_out::main::h2d10ba762d3f8adf
[INFO] [stdout]   24:     0x5b52590dc9a3 - core::ops::function::FnOnce::call_once::h89333dd4ac8e03fc
[INFO] [stdout]   25:     0x5b52590dc8f6 - std::sys::backtrace::__rust_begin_short_backtrace::h8a10de1e92516da1
[INFO] [stdout]   26:     0x5b52590dc8d9 - std::rt::lang_start::{{closure}}::h0af3a8cb06b34c3e
[INFO] [stdout]   27:     0x5b5259102fc0 - core::ops::function::impls::<impl core::ops::function::FnOnce<A> for &F>::call_once::h638295a043b40957
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/core/src/ops/function.rs:290:21
[INFO] [stdout]   28:     0x5b5259102fc0 - std::panicking::catch_unwind::do_call::hbd68098bdea1ca50
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   29:     0x5b5259102fc0 - std::panicking::catch_unwind::h50591d85bf847c7c
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   30:     0x5b5259102fc0 - std::panic::catch_unwind::h2487b4c4f2ae22c6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   31:     0x5b5259102fc0 - std::rt::lang_start_internal::{{closure}}::h61f0945cc6c9a811
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:175:24
[INFO] [stdout]   32:     0x5b5259102fc0 - std::panicking::catch_unwind::do_call::h34b9c3722acd6bd1
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:589:40
[INFO] [stdout]   33:     0x5b5259102fc0 - std::panicking::catch_unwind::hf9a822ea043fb0d6
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panicking.rs:552:19
[INFO] [stdout]   34:     0x5b5259102fc0 - std::panic::catch_unwind::h5b3cac802237ed89
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/panic.rs:359:14
[INFO] [stdout]   35:     0x5b5259102fc0 - std::rt::lang_start_internal::h34f9328d113fd60a
[INFO] [stdout]                                at /rustc/1159e78c4747b02ef996e55082b704c09b970588/library/std/src/rt.rs:171:5
[INFO] [stdout]   36:     0x5b52590dc8c1 - std::rt::lang_start::h8f736fe0a226e45f
[INFO] [stdout]   37:     0x5b52590dd465 - main
[INFO] [stdout]   38:     0x74f79e19f1ca - <unknown>
[INFO] [stdout]   39:     0x74f79e19f28b - __libc_start_main
[INFO] [stdout]   40:     0x5b52590dc7d5 - _start
[INFO] [stdout]   41:                0x0 - <unknown>
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] failures:
[INFO] [stdout]     src/lib.rs - (line 15)
[INFO] [stdout]     src/lib.rs - (line 37)
[INFO] [stdout]     src/lib.rs - (line 55)
[INFO] [stdout]     src/lib.rs - (line 82)
[INFO] [stdout]     src/lib.rs - count (line 344)
[INFO] [stdout]     src/lib.rs - count (line 359)
[INFO] [stdout]     src/lib.rs - instantiate (line 230)
[INFO] [stdout]     src/lib.rs - instantiate (line 240)
[INFO] [stdout]     src/lib.rs - instantiate (line 250)
[INFO] [stdout]     src/lib.rs - instantiate (line 265)
[INFO] [stdout]     src/lib.rs - log (line 310)
[INFO] [stdout]     src/lib.rs - log (line 315)
[INFO] [stdout]     src/lib.rs - scope (line 160)
[INFO] [stdout]     src/lib.rs - scope (line 166)
[INFO] [stdout]     src/lib.rs - scope (line 176)
[INFO] [stdout]     src/writer.rs - writer::Writer (line 14)
[INFO] [stdout] 
[INFO] [stdout] test result: FAILED. 0 passed; 16 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.98s
[INFO] [stdout] 
[INFO] running `Command { std: "docker" "inspect" "91d7df58bac32847942b8839553d09f5b808213dab811a0dd931fe2782365a5e", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "91d7df58bac32847942b8839553d09f5b808213dab811a0dd931fe2782365a5e", kill_on_drop: false }`
[INFO] [stdout] 91d7df58bac32847942b8839553d09f5b808213dab811a0dd931fe2782365a5e
