Oct 15 06:37:59.432 INFO testing StephanHeijl/global-supertrees against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 15 06:37:59.432 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt build --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 15 06:37:59.987 INFO blam! 9188657a802598c01d59f48129c4737f93c46827e1bd5e2a53b5fc4dbeb3ae49 Oct 15 06:38:00.003 INFO running `"docker" "start" "-a" "9188657a802598c01d59f48129c4737f93c46827e1bd5e2a53b5fc4dbeb3ae49"` Oct 15 06:38:01.155 INFO kablam! usermod: no changes Oct 15 06:38:01.327 INFO kablam! Compiling num-complex v0.1.43 Oct 15 06:38:02.715 INFO kablam! Compiling ndarray v0.11.2 Oct 15 06:38:12.822 INFO kablam! Compiling newick v0.1.0 (/source) Oct 15 06:38:13.403 INFO kablam! warning: unused import: `std::process` Oct 15 06:38:13.403 INFO kablam! --> src/tree.rs:4:5 Oct 15 06:38:13.403 INFO kablam! | Oct 15 06:38:13.403 INFO kablam! 4 | use std::process; Oct 15 06:38:13.403 INFO kablam! | ^^^^^^^^^^^^ Oct 15 06:38:13.403 INFO kablam! | Oct 15 06:38:13.403 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 06:38:13.403 INFO kablam! Oct 15 06:38:13.607 INFO kablam! warning: method is never used: `find_first_zero` Oct 15 06:38:13.607 INFO kablam! --> src/tree.rs:21:5 Oct 15 06:38:13.607 INFO kablam! | Oct 15 06:38:13.607 INFO kablam! 21 | fn find_first_zero(identity_row : ArrayView1) -> usize { Oct 15 06:38:13.607 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 06:38:13.607 INFO kablam! | Oct 15 06:38:13.607 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 06:38:13.607 INFO kablam! Oct 15 06:38:13.607 INFO kablam! warning: method is never used: `find_final_parent` Oct 15 06:38:13.607 INFO kablam! --> src/tree.rs:36:5 Oct 15 06:38:13.607 INFO kablam! | Oct 15 06:38:13.607 INFO kablam! 36 | fn find_final_parent(l1 : usize, l2 : usize, identity_matrix : &Array2) -> (usize, usize) { Oct 15 06:38:13.607 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 06:38:13.607 INFO kablam! Oct 15 06:38:13.607 INFO kablam! warning: method is never used: `find_first_common_ancestor` Oct 15 06:38:13.607 INFO kablam! --> src/tree.rs:43:5 Oct 15 06:38:13.607 INFO kablam! | Oct 15 06:38:13.607 INFO kablam! 43 | fn find_first_common_ancestor(l1 : usize, l2 : usize, identity_matrix : &Array2) -> usize { Oct 15 06:38:13.607 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 06:38:13.607 INFO kablam! Oct 15 06:38:13.607 INFO kablam! warning: method is never used: `generate_full_distance_matrix` Oct 15 06:38:13.607 INFO kablam! --> src/tree.rs:66:5 Oct 15 06:38:13.607 INFO kablam! | Oct 15 06:38:13.607 INFO kablam! 66 | / fn generate_full_distance_matrix(leaf_distance_matrix : Array2, Oct 15 06:38:13.607 INFO kablam! 67 | | identity_matrix: Array2, Oct 15 06:38:13.607 INFO kablam! 68 | | n_leaves : usize) -> Array2 { Oct 15 06:38:13.607 INFO kablam! 69 | | Oct 15 06:38:13.607 INFO kablam! ... | Oct 15 06:38:13.607 INFO kablam! 101 | | distance_matrix Oct 15 06:38:13.607 INFO kablam! 102 | | } Oct 15 06:38:13.607 INFO kablam! | |_____^ Oct 15 06:38:13.607 INFO kablam! Oct 15 06:38:13.607 INFO kablam! warning: method is never used: `new` Oct 15 06:38:13.607 INFO kablam! --> src/tree.rs:104:5 Oct 15 06:38:13.608 INFO kablam! | Oct 15 06:38:13.608 INFO kablam! 104 | / pub fn new(leaf_distance_matrix : Array2, Oct 15 06:38:13.608 INFO kablam! 105 | | identity_matrix: Array2, Oct 15 06:38:13.608 INFO kablam! 106 | | leaf_map: HashMap) -> TreeDistanceMatrix { Oct 15 06:38:13.608 INFO kablam! 107 | | let n_leaves = leaf_map.len(); Oct 15 06:38:13.608 INFO kablam! ... | Oct 15 06:38:13.608 INFO kablam! 116 | | tdm Oct 15 06:38:13.608 INFO kablam! 117 | | } Oct 15 06:38:13.608 INFO kablam! | |_____^ Oct 15 06:38:13.608 INFO kablam! Oct 15 06:38:13.608 INFO kablam! warning: method is never used: `new` Oct 15 06:38:13.608 INFO kablam! --> src/tree.rs:284:5 Oct 15 06:38:13.608 INFO kablam! | Oct 15 06:38:13.608 INFO kablam! 284 | pub fn new(leaves : Vec, branches : Vec, leaf_distances : Vec, branch_distances : Vec) -> Tree { Oct 15 06:38:13.608 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 06:38:13.608 INFO kablam! Oct 15 06:38:13.608 INFO kablam! warning: method is never used: `to_distance_matrix` Oct 15 06:38:13.608 INFO kablam! --> src/tree.rs:318:5 Oct 15 06:38:13.608 INFO kablam! | Oct 15 06:38:13.608 INFO kablam! 318 | pub fn to_distance_matrix(&self)-> TreeDistanceMatrix { Oct 15 06:38:13.608 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 06:38:13.608 INFO kablam! Oct 15 06:38:14.555 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 13.38s Oct 15 06:38:14.558 INFO kablam! su: No module specific data is present Oct 15 06:38:15.123 INFO running `"docker" "rm" "-f" "9188657a802598c01d59f48129c4737f93c46827e1bd5e2a53b5fc4dbeb3ae49"` Oct 15 06:38:15.407 INFO blam! 9188657a802598c01d59f48129c4737f93c46827e1bd5e2a53b5fc4dbeb3ae49 Oct 15 06:38:15.409 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen --no-run" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 15 06:38:15.891 INFO blam! e8f8acd98f0113600477a966254b0386adbe09f38eadab2b29dc89ec79a8eae9 Oct 15 06:38:15.894 INFO running `"docker" "start" "-a" "e8f8acd98f0113600477a966254b0386adbe09f38eadab2b29dc89ec79a8eae9"` Oct 15 06:38:16.961 INFO kablam! usermod: no changes Oct 15 06:38:17.020 INFO kablam! Compiling newick v0.1.0 (/source) Oct 15 06:38:17.801 INFO kablam! warning: unused import: `std::process` Oct 15 06:38:17.802 INFO kablam! --> src/tree.rs:4:5 Oct 15 06:38:17.802 INFO kablam! | Oct 15 06:38:17.803 INFO kablam! 4 | use std::process; Oct 15 06:38:17.803 INFO kablam! | ^^^^^^^^^^^^ Oct 15 06:38:17.803 INFO kablam! | Oct 15 06:38:17.804 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 06:38:17.804 INFO kablam! Oct 15 06:38:19.743 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 2.76s Oct 15 06:38:19.750 INFO kablam! su: No module specific data is present Oct 15 06:38:20.173 INFO running `"docker" "rm" "-f" "e8f8acd98f0113600477a966254b0386adbe09f38eadab2b29dc89ec79a8eae9"` Oct 15 06:38:20.279 INFO blam! e8f8acd98f0113600477a966254b0386adbe09f38eadab2b29dc89ec79a8eae9 Oct 15 06:38:20.289 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-1/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-1/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +40d4795669493f1965de7c44029c69552134fe1f-alt test --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 15 06:38:20.650 INFO blam! 83290c4d24353e65e798e168f371ac41c89614bf6ad1645b43611faa19e29beb Oct 15 06:38:20.651 INFO running `"docker" "start" "-a" "83290c4d24353e65e798e168f371ac41c89614bf6ad1645b43611faa19e29beb"` Oct 15 06:38:21.754 INFO kablam! usermod: no changes Oct 15 06:38:21.791 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.02s Oct 15 06:38:21.803 INFO kablam! Running /target/debug/deps/newick-4c8543dfc9332468 Oct 15 06:38:21.804 INFO blam! Oct 15 06:38:21.804 INFO blam! running 6 tests Oct 15 06:38:21.807 INFO blam! test test_tree_parsing::tests::test_construct_tree_from_file_2 ... ok Oct 15 06:38:21.807 INFO blam! test test_tree_parsing::tests::test_construct_tree_from_file_3 ... ok Oct 15 06:38:21.808 INFO blam! test tests::tests::test_traversal ... ok Oct 15 06:38:21.808 INFO blam! test test_tree_parsing::tests::test_construct_tree_from_file_1 ... ok Oct 15 06:38:21.834 INFO blam! test tests::tests::test_to_distance_matrix ... FAILED Oct 15 06:38:21.834 INFO kablam! error: test failed, to rerun pass '--bin newick' Oct 15 06:38:21.834 INFO blam! test tests::tests::test_load_tree_file ... FAILED Oct 15 06:38:21.834 INFO blam! Oct 15 06:38:21.834 INFO blam! failures: Oct 15 06:38:21.834 INFO blam! Oct 15 06:38:21.834 INFO blam! ---- tests::tests::test_to_distance_matrix stdout ---- Oct 15 06:38:21.834 INFO blam! thread 'tests::tests::test_to_distance_matrix' panicked at 'file not found: Os { code: 2, kind: NotFound, message: "No such file or directory" }', libcore/result.rs:1009:5 Oct 15 06:38:21.834 INFO blam! stack backtrace: Oct 15 06:38:21.834 INFO blam! 0: 0x557e46f7fece - std::sys::unix::backtrace::tracing::imp::unwind_backtrace::h7fa1e90165a4b6b7 Oct 15 06:38:21.834 INFO blam! at libstd/sys/unix/backtrace/tracing/gcc_s.rs:49 Oct 15 06:38:21.834 INFO blam! 1: 0x557e46f89046 - std::sys_common::backtrace::print::hce31971a380b167f Oct 15 06:38:21.834 INFO blam! at libstd/sys_common/backtrace.rs:71 Oct 15 06:38:21.834 INFO blam! at libstd/sys_common/backtrace.rs:59 Oct 15 06:38:21.834 INFO blam! 2: 0x557e46f83d9d - std::panicking::default_hook::{{closure}}::h9590c1e09d0fb8eb Oct 15 06:38:21.834 INFO blam! at libstd/panicking.rs:211 Oct 15 06:38:21.834 INFO blam! 3: 0x557e46f83aab - std::panicking::default_hook::hb1838a6568eb05e3 Oct 15 06:38:21.834 INFO blam! at libstd/panicking.rs:221 Oct 15 06:38:21.834 INFO blam! 4: 0x557e46f8444c - std::panicking::rust_panic_with_hook::h9ad880ee5fc38368 Oct 15 06:38:21.834 INFO blam! at libstd/panicking.rs:476 Oct 15 06:38:21.834 INFO blam! 5: 0x557e46f84009 - std::panicking::continue_panic_fmt::h16b21ef393998895 Oct 15 06:38:21.834 INFO blam! at libstd/panicking.rs:390 Oct 15 06:38:21.834 INFO blam! 6: 0x557e46f83f05 - rust_begin_unwind Oct 15 06:38:21.834 INFO blam! at libstd/panicking.rs:325 Oct 15 06:38:21.834 INFO blam! 7: 0x557e46fc922b - core::panicking::panic_fmt::hc3b8aa7e32042c96 Oct 15 06:38:21.834 INFO blam! at libcore/panicking.rs:77 Oct 15 06:38:21.834 INFO blam! 8: 0x557e46ef1fe3 - core::result::unwrap_failed::h22ddb0a195d414a1 Oct 15 06:38:21.834 INFO blam! at libcore/macros.rs:26 Oct 15 06:38:21.834 INFO blam! 9: 0x557e46ef0743 - >::expect::h3dd4c68542f6bdd3 Oct 15 06:38:21.834 INFO blam! at libcore/result.rs:835 Oct 15 06:38:21.834 INFO blam! 10: 0x557e46f154bb - newick::utils::load_tree_file::hdf61e81caff19cda Oct 15 06:38:21.834 INFO blam! at src/utils.rs:5 Oct 15 06:38:21.834 INFO blam! 11: 0x557e46f296ec - newick::tests::tests::test_to_distance_matrix::h512483b023b28491 Oct 15 06:38:21.834 INFO blam! at src/tests.rs:58 Oct 15 06:38:21.834 INFO blam! 12: 0x557e46f29679 - newick::tests::tests::test_to_distance_matrix::{{closure}}::h4c07124426bb0865 Oct 15 06:38:21.834 INFO blam! at src/tests.rs:56 Oct 15 06:38:21.834 INFO blam! 13: 0x557e46ef42dd - core::ops::function::FnOnce::call_once::h35525cab6a3c9f18 Oct 15 06:38:21.834 INFO blam! at libcore/ops/function.rs:238 Oct 15 06:38:21.834 INFO blam! 14: 0x557e46f2b1de - >::call_box::hae226a42c8d94b19 Oct 15 06:38:21.834 INFO blam! at libtest/lib.rs:1468 Oct 15 06:38:21.834 INFO blam! at libcore/ops/function.rs:238 Oct 15 06:38:21.834 INFO blam! at liballoc/boxed.rs:672 Oct 15 06:38:21.834 INFO blam! 15: 0x557e46f94569 - __rust_maybe_catch_panic Oct 15 06:38:21.834 INFO blam! at libpanic_unwind/lib.rs:102 Oct 15 06:38:21.836 INFO blam! 16: 0x557e46f4bc0d - std::sys_common::backtrace::__rust_begin_short_backtrace::ha5325a24fd096595 Oct 15 06:38:21.836 INFO kablam! su: No module specific data is present Oct 15 06:38:21.836 INFO blam! at libstd/panicking.rs:289 Oct 15 06:38:21.836 INFO blam! at libstd/panic.rs:392 Oct 15 06:38:21.836 INFO blam! at libtest/lib.rs:1423 Oct 15 06:38:21.836 INFO blam! at libstd/sys_common/backtrace.rs:136 Oct 15 06:38:21.836 INFO blam! 17: 0x557e46f4c7b4 - std::panicking::try::do_call::h2c632c17829d0621 Oct 15 06:38:21.836 INFO blam! at libstd/thread/mod.rs:409 Oct 15 06:38:21.836 INFO blam! at libstd/panic.rs:313 Oct 15 06:38:21.836 INFO blam! at libstd/panicking.rs:310 Oct 15 06:38:21.836 INFO blam! 18: 0x557e46f94569 - __rust_maybe_catch_panic Oct 15 06:38:21.837 INFO blam! at libpanic_unwind/lib.rs:102 Oct 15 06:38:21.837 INFO blam! 19: 0x557e46f39df6 - >::call_box::h1a0832645645f090 Oct 15 06:38:21.837 INFO blam! at libstd/panicking.rs:289 Oct 15 06:38:21.837 INFO blam! at libstd/panic.rs:392 Oct 15 06:38:21.837 INFO blam! at libstd/thread/mod.rs:408 Oct 15 06:38:21.837 INFO blam! at liballoc/boxed.rs:672 Oct 15 06:38:21.837 INFO blam! 20: 0x557e46f821da - std::sys_common::thread::start_thread::h49b8ca61f624f031 Oct 15 06:38:21.837 INFO blam! at liballoc/boxed.rs:682 Oct 15 06:38:21.837 INFO blam! at libstd/sys_common/thread.rs:24 Oct 15 06:38:21.837 INFO blam! 21: 0x557e46f77685 - std::sys::unix::thread::Thread::new::thread_start::hc999bd1fb8f071a1 Oct 15 06:38:21.837 INFO blam! at libstd/sys/unix/thread.rs:90 Oct 15 06:38:21.837 INFO blam! 22: 0x7f0d035ec6b9 - start_thread Oct 15 06:38:21.837 INFO blam! 23: 0x7f0d0310c41c - clone Oct 15 06:38:21.837 INFO blam! 24: 0x0 - Oct 15 06:38:21.837 INFO blam! Oct 15 06:38:21.837 INFO blam! ---- tests::tests::test_load_tree_file stdout ---- Oct 15 06:38:21.837 INFO blam! thread 'tests::tests::test_load_tree_file' panicked at 'file not found: Os { code: 2, kind: NotFound, message: "No such file or directory" }', libcore/result.rs:1009:5 Oct 15 06:38:21.837 INFO blam! stack backtrace: Oct 15 06:38:21.837 INFO blam! 0: 0x557e46f7fece - std::sys::unix::backtrace::tracing::imp::unwind_backtrace::h7fa1e90165a4b6b7 Oct 15 06:38:21.837 INFO blam! at libstd/sys/unix/backtrace/tracing/gcc_s.rs:49 Oct 15 06:38:21.837 INFO blam! 1: 0x557e46f89046 - std::sys_common::backtrace::print::hce31971a380b167f Oct 15 06:38:21.837 INFO blam! at libstd/sys_common/backtrace.rs:71 Oct 15 06:38:21.837 INFO blam! at libstd/sys_common/backtrace.rs:59 Oct 15 06:38:21.837 INFO blam! 2: 0x557e46f83d9d - std::panicking::default_hook::{{closure}}::h9590c1e09d0fb8eb Oct 15 06:38:21.837 INFO blam! at libstd/panicking.rs:211 Oct 15 06:38:21.838 INFO blam! 3: 0x557e46f83aab - std::panicking::default_hook::hb1838a6568eb05e3 Oct 15 06:38:21.838 INFO blam! at libstd/panicking.rs:221 Oct 15 06:38:21.838 INFO blam! 4: 0x557e46f8444c - std::panicking::rust_panic_with_hook::h9ad880ee5fc38368 Oct 15 06:38:21.838 INFO blam! at libstd/panicking.rs:476 Oct 15 06:38:21.838 INFO blam! 5: 0x557e46f84009 - std::panicking::continue_panic_fmt::h16b21ef393998895 Oct 15 06:38:21.838 INFO blam! at libstd/panicking.rs:390 Oct 15 06:38:21.838 INFO blam! 6: 0x557e46f83f05 - rust_begin_unwind Oct 15 06:38:21.838 INFO blam! at libstd/panicking.rs:325 Oct 15 06:38:21.838 INFO blam! 7: 0x557e46fc922b - core::panicking::panic_fmt::hc3b8aa7e32042c96 Oct 15 06:38:21.838 INFO blam! at libcore/panicking.rs:77 Oct 15 06:38:21.838 INFO blam! 8: 0x557e46ef1fe3 - core::result::unwrap_failed::h22ddb0a195d414a1 Oct 15 06:38:21.838 INFO blam! at libcore/macros.rs:26 Oct 15 06:38:21.838 INFO blam! 9: 0x557e46ef0743 - >::expect::h3dd4c68542f6bdd3 Oct 15 06:38:21.838 INFO blam! at libcore/result.rs:835 Oct 15 06:38:21.838 INFO blam! 10: 0x557e46f154bb - newick::utils::load_tree_file::hdf61e81caff19cda Oct 15 06:38:21.838 INFO blam! at src/utils.rs:5 Oct 15 06:38:21.838 INFO blam! 11: 0x557e46f295d9 - newick::tests::tests::test_load_tree_file::hf6e79a36fbb56e97 Oct 15 06:38:21.838 INFO blam! at src/tests.rs:50 Oct 15 06:38:21.838 INFO blam! 12: 0x557e46f29569 - newick::tests::tests::test_load_tree_file::{{closure}}::hf4e3c3ea28a0c59a Oct 15 06:38:21.838 INFO blam! at src/tests.rs:48 Oct 15 06:38:21.838 INFO blam! 13: 0x557e46ef435d - core::ops::function::FnOnce::call_once::h60c30cfd01706d11 Oct 15 06:38:21.838 INFO blam! at libcore/ops/function.rs:238 Oct 15 06:38:21.838 INFO blam! 14: 0x557e46f2b1de - >::call_box::hae226a42c8d94b19 Oct 15 06:38:21.838 INFO blam! at libtest/lib.rs:1468 Oct 15 06:38:21.838 INFO blam! at libcore/ops/function.rs:238 Oct 15 06:38:21.839 INFO blam! at liballoc/boxed.rs:672 Oct 15 06:38:21.839 INFO blam! 15: 0x557e46f94569 - __rust_maybe_catch_panic Oct 15 06:38:21.839 INFO blam! at libpanic_unwind/lib.rs:102 Oct 15 06:38:21.839 INFO blam! 16: 0x557e46f4bc0d - std::sys_common::backtrace::__rust_begin_short_backtrace::ha5325a24fd096595 Oct 15 06:38:21.839 INFO blam! at libstd/panicking.rs:289 Oct 15 06:38:21.839 INFO blam! at libstd/panic.rs:392 Oct 15 06:38:21.839 INFO blam! at libtest/lib.rs:1423 Oct 15 06:38:21.839 INFO blam! at libstd/sys_common/backtrace.rs:136 Oct 15 06:38:21.839 INFO blam! 17: 0x557e46f4c7b4 - std::panicking::try::do_call::h2c632c17829d0621 Oct 15 06:38:21.839 INFO blam! at libstd/thread/mod.rs:409 Oct 15 06:38:21.839 INFO blam! at libstd/panic.rs:313 Oct 15 06:38:21.839 INFO blam! at libstd/panicking.rs:310 Oct 15 06:38:21.839 INFO blam! 18: 0x557e46f94569 - __rust_maybe_catch_panic Oct 15 06:38:21.839 INFO blam! at libpanic_unwind/lib.rs:102 Oct 15 06:38:21.839 INFO blam! 19: 0x557e46f39df6 - >::call_box::h1a0832645645f090 Oct 15 06:38:21.839 INFO blam! at libstd/panicking.rs:289 Oct 15 06:38:21.839 INFO blam! at libstd/panic.rs:392 Oct 15 06:38:21.839 INFO blam! at libstd/thread/mod.rs:408 Oct 15 06:38:21.839 INFO blam! at liballoc/boxed.rs:672 Oct 15 06:38:21.839 INFO blam! 20: 0x557e46f821da - std::sys_common::thread::start_thread::h49b8ca61f624f031 Oct 15 06:38:21.839 INFO blam! at liballoc/boxed.rs:682 Oct 15 06:38:21.839 INFO blam! at libstd/sys_common/thread.rs:24 Oct 15 06:38:21.839 INFO blam! 21: 0x557e46f77685 - std::sys::unix::thread::Thread::new::thread_start::hc999bd1fb8f071a1 Oct 15 06:38:21.840 INFO blam! at libstd/sys/unix/thread.rs:90 Oct 15 06:38:21.840 INFO blam! 22: 0x7f0d035ec6b9 - start_thread Oct 15 06:38:21.840 INFO blam! 23: 0x7f0d0310c41c - clone Oct 15 06:38:21.840 INFO blam! 24: 0x0 - Oct 15 06:38:21.840 INFO blam! Oct 15 06:38:21.840 INFO blam! Oct 15 06:38:21.840 INFO blam! failures: Oct 15 06:38:21.840 INFO blam! tests::tests::test_load_tree_file Oct 15 06:38:21.840 INFO blam! tests::tests::test_to_distance_matrix Oct 15 06:38:21.840 INFO blam! Oct 15 06:38:21.840 INFO blam! test result: FAILED. 4 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 06:38:21.840 INFO blam! Oct 15 06:38:22.401 INFO running `"docker" "rm" "-f" "83290c4d24353e65e798e168f371ac41c89614bf6ad1645b43611faa19e29beb"` Oct 15 06:38:22.641 INFO blam! 83290c4d24353e65e798e168f371ac41c89614bf6ad1645b43611faa19e29beb