[INFO] updating cached repository https://github.com/blazern/recipe_calculator_server [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/big/crater/work/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] d10696bcf74bc10551957c321b6fb2b0a3cff55f [INFO] testing blazern/recipe_calculator_server against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2Fblazern%2Frecipe_calculator_server" "work/builds/worker-0/source"` [INFO] [stderr] Cloning into 'work/builds/worker-0/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/blazern/recipe_calculator_server on toolchain beta-2019-09-28 [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/blazern/recipe_calculator_server [INFO] finished tweaking git repo https://github.com/blazern/recipe_calculator_server [INFO] tweaked toml for git repo https://github.com/blazern/recipe_calculator_server written to work/builds/worker-0/source/Cargo.toml [INFO] crate git repo https://github.com/blazern/recipe_calculator_server already has a lockfile, it will not be regenerated [INFO] running `"/big/crater/work/cargo-home/bin/cargo" "+beta-2019-09-28" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-0/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "build" "--frozen"` [INFO] [stdout] b5d47dfc1140045160e8e427db4bf4012772a4d19bd3747dcdc8b85a83e0aafa [INFO] running `"docker" "start" "-a" "b5d47dfc1140045160e8e427db4bf4012772a4d19bd3747dcdc8b85a83e0aafa"` [INFO] [stderr] Compiling rand_jitter v0.1.2 [INFO] [stderr] Compiling want v0.0.6 [INFO] [stderr] Compiling crossbeam-channel v0.3.8 [INFO] [stderr] Compiling tokio-timer v0.2.9 [INFO] [stderr] Compiling mio v0.6.16 [INFO] [stderr] Compiling serde_json v1.0.38 [INFO] [stderr] Compiling clap v2.32.0 [INFO] [stderr] Compiling tokio-io v0.1.11 [INFO] [stderr] Compiling syn v0.15.26 [INFO] [stderr] Compiling uuid v0.5.1 [INFO] [stderr] Compiling native-tls v0.2.2 [INFO] [stderr] Compiling rand v0.6.5 [INFO] [stderr] Compiling tokio-codec v0.1.1 [INFO] [stderr] Compiling h2 v0.1.16 [INFO] [stderr] Compiling mio-uds v0.6.7 [INFO] [stderr] Compiling parking_lot_core v0.4.0 [INFO] [stderr] Compiling parking_lot v0.7.1 [INFO] [stderr] Compiling tokio-reactor v0.1.8 [INFO] [stderr] Compiling crossbeam v0.6.0 [INFO] [stderr] Compiling tokio-threadpool v0.1.11 [INFO] [stderr] Compiling tokio-uds v0.2.5 [INFO] [stderr] Compiling tokio-tcp v0.1.3 [INFO] [stderr] Compiling tokio-udp v0.1.3 [INFO] [stderr] Compiling tokio-fs v0.1.5 [INFO] [stderr] Compiling tokio v0.1.15 [INFO] [stderr] Compiling diesel_derives v1.4.0 [INFO] [stderr] Compiling serde_derive v1.0.85 [INFO] [stderr] Compiling hyper v0.12.23 [INFO] [stderr] Compiling tokio-core v0.1.17 [INFO] [stderr] Compiling diesel v1.4.1 [INFO] [stderr] Compiling hyper-tls v0.3.1 [INFO] [stderr] Compiling recipe_calculator_server v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/config.rs:37:30 [INFO] [stderr] | [INFO] [stderr] 37 | pub fn from(reader: &mut Read) -> Result { [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Read` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/server/client_cmd.rs:34:29 [INFO] [stderr] | [INFO] [stderr] 34 | uid_generator: &mut UuidGenerator, [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn UuidGenerator` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/server/client_cmd.rs:35:35 [INFO] [stderr] | [INFO] [stderr] 35 | device_id_generator: &mut UuidGenerator, [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn UuidGenerator` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::cause': replaced by Error::source, which can support downcasting [INFO] [stderr] --> src/db/core/error.rs:4:1 [INFO] [stderr] | [INFO] [stderr] 4 | / error_chain! { [INFO] [stderr] 5 | | foreign_links { [INFO] [stderr] 6 | | // General error for all not specified DB failures. [INFO] [stderr] 7 | | DBError(diesel::result::Error); [INFO] [stderr] ... | [INFO] [stderr] 24 | | } [INFO] [stderr] 25 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::cause': replaced by Error::source, which can support downcasting [INFO] [stderr] --> src/error.rs:9:1 [INFO] [stderr] | [INFO] [stderr] 9 | / error_chain! { [INFO] [stderr] 10 | | foreign_links { [INFO] [stderr] 11 | | Io(std::io::Error); [INFO] [stderr] 12 | | SerdeJson(serde_json::error::Error); [INFO] [stderr] ... | [INFO] [stderr] 17 | | } [INFO] [stderr] 18 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1m 48s [INFO] running `"docker" "inspect" "b5d47dfc1140045160e8e427db4bf4012772a4d19bd3747dcdc8b85a83e0aafa"` [INFO] running `"docker" "rm" "-f" "b5d47dfc1140045160e8e427db4bf4012772a4d19bd3747dcdc8b85a83e0aafa"` [INFO] [stdout] b5d47dfc1140045160e8e427db4bf4012772a4d19bd3747dcdc8b85a83e0aafa [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-0/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "test" "--frozen" "--no-run"` [INFO] [stdout] 38e45d00b080ab2259054a8d85ac03cbfe97f4642a6f4fb6581219165495faca [INFO] running `"docker" "start" "-a" "38e45d00b080ab2259054a8d85ac03cbfe97f4642a6f4fb6581219165495faca"` [INFO] [stderr] Compiling recipe_calculator_server v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: the item `std` is imported redundantly [INFO] [stderr] --> src/testing_config.rs:7:9 [INFO] [stderr] | [INFO] [stderr] 7 | use std; [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/config.rs:37:30 [INFO] [stderr] | [INFO] [stderr] 37 | pub fn from(reader: &mut Read) -> Result { [INFO] [stderr] | ^^^^ help: use `dyn`: `dyn Read` [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/server/client_cmd.rs:34:29 [INFO] [stderr] | [INFO] [stderr] 34 | uid_generator: &mut UuidGenerator, [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn UuidGenerator` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/server/client_cmd.rs:35:35 [INFO] [stderr] | [INFO] [stderr] 35 | device_id_generator: &mut UuidGenerator, [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn UuidGenerator` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/server/testing_server_wrapper.rs:16:39 [INFO] [stderr] | [INFO] [stderr] 16 | finish_event_receiver: Option>>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Future` [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::cause': replaced by Error::source, which can support downcasting [INFO] [stderr] --> src/db/core/error.rs:4:1 [INFO] [stderr] | [INFO] [stderr] 4 | / error_chain! { [INFO] [stderr] 5 | | foreign_links { [INFO] [stderr] 6 | | // General error for all not specified DB failures. [INFO] [stderr] 7 | | DBError(diesel::result::Error); [INFO] [stderr] ... | [INFO] [stderr] 24 | | } [INFO] [stderr] 25 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::error::Error::cause': replaced by Error::source, which can support downcasting [INFO] [stderr] --> src/error.rs:9:1 [INFO] [stderr] | [INFO] [stderr] 9 | / error_chain! { [INFO] [stderr] 10 | | foreign_links { [INFO] [stderr] 11 | | Io(std::io::Error); [INFO] [stderr] 12 | | SerdeJson(serde_json::error::Error); [INFO] [stderr] ... | [INFO] [stderr] 17 | | } [INFO] [stderr] 18 | | } [INFO] [stderr] | |_^ [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 10.23s [INFO] running `"docker" "inspect" "38e45d00b080ab2259054a8d85ac03cbfe97f4642a6f4fb6581219165495faca"` [INFO] running `"docker" "rm" "-f" "38e45d00b080ab2259054a8d85ac03cbfe97f4642a6f4fb6581219165495faca"` [INFO] [stdout] 38e45d00b080ab2259054a8d85ac03cbfe97f4642a6f4fb6581219165495faca [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-0/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-0/source:/opt/rustwide/workdir:ro,Z" "-v" "/big/crater/work/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/big/crater/work/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+beta-2019-09-28" "test" "--frozen"` [INFO] [stdout] ee187029b6392490d6000a10147fcb234f1fceb7c6dc8205ec3f16c162f8fb96 [INFO] running `"docker" "start" "-a" "ee187029b6392490d6000a10147fcb234f1fceb7c6dc8205ec3f16c162f8fb96"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.86s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/recipe_calculator_lib-88923d032f7324a5 [INFO] [stdout] [INFO] [stdout] running 46 tests [INFO] [stdout] test config::config_test::can_read_config ... ok [INFO] [stdout] test db::core::device::device_test::can_delete_device_by_id ... FAILED [INFO] [stdout] test db::core::app_user::app_user_test::insertion_and_selection_work ... FAILED [INFO] [stdout] test db::core::app_user::app_user_test::cant_delete_user_with_client_connection ... FAILED [INFO] [stdout] test db::core::app_user::app_user_test::cant_insert_user_with_already_used_uid ... FAILED [INFO] [stdout] test db::core::connection::connection_test::connection_constructs_with_valid_config ... FAILED [INFO] [stdout] test db::core::diesel_macro::diesel_macro_test::select_macro_works ... FAILED [INFO] [stdout] test db::core::diesel_macro::diesel_macro_test::insert_macro_works ... FAILED [INFO] [stdout] test db::core::device::device_test::can_select_by_uuid ... FAILED [INFO] [stdout] test db::core::device::device_test::multiple_devices_can_depend_on_single_app_user ... FAILED [INFO] [stdout] test db::core::diesel_macro::diesel_macro_test::delete_macro_works ... FAILED [INFO] [stdout] test db::core::foodstuff::foodstuff_test::multiple_foodstuffs_can_depend_on_single_app_user ... FAILED [INFO] [stdout] test db::core::foodstuff::foodstuff_test::insertion_and_selection_work ... FAILED [INFO] [stdout] test db::core::device::device_test::insertion_and_selection_work ... FAILED [INFO] [stdout] test db::core::device::device_test::cant_insert_device_with_already_used_uuid ... FAILED [INFO] [stdout] test db::core::diesel_macro::diesel_macro_test::update_macro_returns_updated_values ... FAILED [INFO] [stdout] test db::core::foodstuff::foodstuff_test::making_already_unlisted_foodstuff_unlisted_does_nothing ... FAILED [INFO] [stdout] test db::core::diesel_macro::diesel_macro_test::unique_violation_error_returned_on_unique_violation ... FAILED [INFO] [stdout] test db::core::diesel_test::operations_without_transactions_dont_roll_back ... FAILED [INFO] [stdout] test db::core::diesel_macro::diesel_macro_test::update_macro_works ... FAILED [INFO] [stdout] test db::core::foodstuff::foodstuff_test::multiple_foodstuffs_with_same_aufi_cannot_depend_on_single_app_user ... FAILED [INFO] [stdout] test db::core::transaction::transaction_test::returns_correct_error ... FAILED [INFO] [stdout] test db::core::vk_user::vk_user_test::insertion_and_selection_work ... FAILED [INFO] [stdout] test db::core::vk_user::vk_user_test::multiple_vk_users_cannot_depend_on_single_app_user ... FAILED [INFO] [stdout] test db::pool::connection_pool::connection_pool_test::can_borrow_and_put_back ... FAILED [INFO] [stdout] test db::pool::connection_pool::connection_pool_test::connections_are_reused ... FAILED [INFO] [stdout] test server::client_cmd::client_cmd_test::device_id_duplication_leaves_user_not_created ... FAILED [INFO] [stdout] test server::client_cmd::client_cmd_test::uid_duplication_leaves_device_not_created ... FAILED [INFO] [stdout] test db::core::transaction::transaction_test::transaction_works ... FAILED [INFO] [stdout] test db::core::foodstuff::foodstuff_test::can_make_foodstuff_unlisted ... FAILED [INFO] [stdout] test db::core::diesel_test::transition_rolls_back_progress_when_interrupted ... FAILED [INFO] [stdout] test server::requests_handler_impl::requests_handler_impl_test::random_client_doesnt_exists ... FAILED [INFO] [stdout] test server::requests_handler_impl::requests_handler_impl_test::test_register_client_cmd ... FAILED [INFO] [stdout] test vk::vk_test::can_check_client_token ... FAILED [INFO] [stdout] test server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_device_id_duplication ... FAILED [INFO] [stdout] test server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_uid_duplication ... FAILED [INFO] [stdout] test server::client_cmd::client_cmd_test::device_registration_works ... FAILED [INFO] [stdout] test db::core::device::device_test::cant_delete_device_with_client_connection ... FAILED [INFO] [stdout] test db::core::vk_user::vk_user_test::cant_insert_vk_user_with_already_used_vk_uid ... FAILED [INFO] [stdout] test db::core::transaction::transaction_test::returns_correct_value ... FAILED [INFO] [stdout] test vk::vk_test::successful_check_response_is_parsed ... ok [INFO] [stdout] test db::core::app_user::app_user_test::can_delete_user_by_id ... FAILED [INFO] [stdout] test db::core::app_user::app_user_test::can_select_user_by_uid ... FAILED [INFO] [stdout] test db::core::connection::connection_test::connection_construction_fails_with_invalid_config ... ok [INFO] [stdout] test server::entry_point::entry_point_test::test_server_responses ... ok [INFO] [stdout] test vk::vk_test::cant_check_client_token_if_server_token_invalid ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- db::core::device::device_test::can_delete_device_by_id stdout ---- [INFO] [stdout] thread 'db::core::device::device_test::can_delete_device_by_id' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::app_user::app_user_test::insertion_and_selection_work stdout ---- [INFO] [stdout] thread 'db::core::app_user::app_user_test::insertion_and_selection_work' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::app_user::app_user_test::cant_delete_user_with_client_connection stdout ---- [INFO] [stdout] thread 'db::core::app_user::app_user_test::cant_delete_user_with_client_connection' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace. [INFO] [stdout] [INFO] [stdout] ---- db::core::app_user::app_user_test::cant_insert_user_with_already_used_uid stdout ---- [INFO] [stdout] thread 'db::core::app_user::app_user_test::cant_insert_user_with_already_used_uid' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::connection::connection_test::connection_constructs_with_valid_config stdout ---- [INFO] [stdout] thread 'db::core::connection::connection_test::connection_constructs_with_valid_config' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_macro::diesel_macro_test::select_macro_works stdout ---- [INFO] [stdout] thread 'db::core::diesel_macro::diesel_macro_test::select_macro_works' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_macro::diesel_macro_test::insert_macro_works stdout ---- [INFO] [stdout] thread 'db::core::diesel_macro::diesel_macro_test::insert_macro_works' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::device::device_test::can_select_by_uuid stdout ---- [INFO] [stdout] thread 'db::core::device::device_test::can_select_by_uuid' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::device::device_test::multiple_devices_can_depend_on_single_app_user stdout ---- [INFO] [stdout] thread 'db::core::device::device_test::multiple_devices_can_depend_on_single_app_user' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_macro::diesel_macro_test::delete_macro_works stdout ---- [INFO] [stdout] thread 'db::core::diesel_macro::diesel_macro_test::delete_macro_works' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::foodstuff::foodstuff_test::multiple_foodstuffs_can_depend_on_single_app_user stdout ---- [INFO] [stdout] thread 'db::core::foodstuff::foodstuff_test::multiple_foodstuffs_can_depend_on_single_app_user' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::foodstuff::foodstuff_test::insertion_and_selection_work stdout ---- [INFO] [stdout] thread 'db::core::foodstuff::foodstuff_test::insertion_and_selection_work' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::device::device_test::insertion_and_selection_work stdout ---- [INFO] [stdout] thread 'db::core::device::device_test::insertion_and_selection_work' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::device::device_test::cant_insert_device_with_already_used_uuid stdout ---- [INFO] [stdout] thread 'db::core::device::device_test::cant_insert_device_with_already_used_uuid' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_macro::diesel_macro_test::update_macro_returns_updated_values stdout ---- [INFO] [stdout] thread 'db::core::diesel_macro::diesel_macro_test::update_macro_returns_updated_values' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::foodstuff::foodstuff_test::making_already_unlisted_foodstuff_unlisted_does_nothing stdout ---- [INFO] [stdout] thread 'db::core::foodstuff::foodstuff_test::making_already_unlisted_foodstuff_unlisted_does_nothing' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_macro::diesel_macro_test::unique_violation_error_returned_on_unique_violation stdout ---- [INFO] [stdout] thread 'db::core::diesel_macro::diesel_macro_test::unique_violation_error_returned_on_unique_violation' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_test::operations_without_transactions_dont_roll_back stdout ---- [INFO] [stdout] thread 'db::core::diesel_test::operations_without_transactions_dont_roll_back' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_macro::diesel_macro_test::update_macro_works stdout ---- [INFO] [stdout] thread 'db::core::diesel_macro::diesel_macro_test::update_macro_works' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::foodstuff::foodstuff_test::multiple_foodstuffs_with_same_aufi_cannot_depend_on_single_app_user stdout ---- [INFO] [stdout] thread 'db::core::foodstuff::foodstuff_test::multiple_foodstuffs_with_same_aufi_cannot_depend_on_single_app_user' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::transaction::transaction_test::returns_correct_error stdout ---- [INFO] [stdout] thread 'db::core::transaction::transaction_test::returns_correct_error' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::vk_user::vk_user_test::insertion_and_selection_work stdout ---- [INFO] [stdout] thread 'db::core::vk_user::vk_user_test::insertion_and_selection_work' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::vk_user::vk_user_test::multiple_vk_users_cannot_depend_on_single_app_user stdout ---- [INFO] [stdout] thread 'db::core::vk_user::vk_user_test::multiple_vk_users_cannot_depend_on_single_app_user' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::pool::connection_pool::connection_pool_test::can_borrow_and_put_back stdout ---- [INFO] [stdout] thread 'db::pool::connection_pool::connection_pool_test::can_borrow_and_put_back' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::pool::connection_pool::connection_pool_test::connections_are_reused stdout ---- [INFO] [stdout] thread 'db::pool::connection_pool::connection_pool_test::connections_are_reused' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::client_cmd::client_cmd_test::device_id_duplication_leaves_user_not_created stdout ---- [INFO] [stdout] thread 'server::client_cmd::client_cmd_test::device_id_duplication_leaves_user_not_created' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::client_cmd::client_cmd_test::uid_duplication_leaves_device_not_created stdout ---- [INFO] [stdout] thread 'server::client_cmd::client_cmd_test::uid_duplication_leaves_device_not_created' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::transaction::transaction_test::transaction_works stdout ---- [INFO] [stdout] thread 'db::core::transaction::transaction_test::transaction_works' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::foodstuff::foodstuff_test::can_make_foodstuff_unlisted stdout ---- [INFO] [stdout] thread 'db::core::foodstuff::foodstuff_test::can_make_foodstuff_unlisted' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::diesel_test::transition_rolls_back_progress_when_interrupted stdout ---- [INFO] [stdout] thread 'db::core::diesel_test::transition_rolls_back_progress_when_interrupted' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::requests_handler_impl::requests_handler_impl_test::random_client_doesnt_exists stdout ---- [INFO] [stdout] thread 'server::requests_handler_impl::requests_handler_impl_test::random_client_doesnt_exists' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::requests_handler_impl::requests_handler_impl_test::test_register_client_cmd stdout ---- [INFO] [stdout] thread 'server::requests_handler_impl::requests_handler_impl_test::test_register_client_cmd' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- vk::vk_test::can_check_client_token stdout ---- [INFO] [stdout] thread 'vk::vk_test::can_check_client_token' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_device_id_duplication stdout ---- [INFO] [stdout] thread 'server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_device_id_duplication' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_uid_duplication stdout ---- [INFO] [stdout] thread 'server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_uid_duplication' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- server::client_cmd::client_cmd_test::device_registration_works stdout ---- [INFO] [stdout] thread 'server::client_cmd::client_cmd_test::device_registration_works' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::device::device_test::cant_delete_device_with_client_connection stdout ---- [INFO] [stdout] thread 'db::core::device::device_test::cant_delete_device_with_client_connection' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::vk_user::vk_user_test::cant_insert_vk_user_with_already_used_vk_uid stdout ---- [INFO] [stdout] thread 'db::core::vk_user::vk_user_test::cant_insert_vk_user_with_already_used_vk_uid' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::transaction::transaction_test::returns_correct_value stdout ---- [INFO] [stdout] thread 'db::core::transaction::transaction_test::returns_correct_value' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] [INFO] [stdout] ---- db::core::app_user::app_user_test::can_delete_user_by_id stdout ---- [INFO] [stdout] thread 'db::core::app_user::app_user_test::can_delete_user_by_id' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x558151241be4 - backtrace::backtrace::libunwind::trace::hf625d18232cbbbd4 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.37/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x558151241be4 - backtrace::backtrace::trace_unsynchronized::h41d74150fc6ff542 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.37/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x558151241be4 - std::sys_common::backtrace::_print_fmt::h85d37830c667a1f9 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:76 [INFO] [stdout] 3: 0x558151241be4 - ::fmt::h2b7ac01d5feaf9b2 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:60 [INFO] [stdout] 4: 0x5581512622bc - core::fmt::write::h7fd0d904495c035f [INFO] [stdout] at src/libcore/fmt/mod.rs:1030 [INFO] [stdout] 5: 0x558150db0cc5 - std::io::Write::write_fmt::h424452e6ba861394 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/io/mod.rs:1412 [INFO] [stdout] 6: 0x55815123ac41 - std::io::impls::>::write_fmt::h814a51d8ae1dee4a [INFO] [stdout] at src/libstd/io/impls.rs:141 [INFO] [stdout] 7: 0x558151244105 - std::sys_common::backtrace::_print::h4c743f7c274a5a74 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:64 [INFO] [stdout] 8: 0x558151244105 - std::sys_common::backtrace::print::ha5c4f4bf03800d4d [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:49 [INFO] [stdout] 9: 0x558151244105 - std::panicking::default_hook::{{closure}}::h8b842185774c09e6 [INFO] [stdout] at src/libstd/panicking.rs:196 [INFO] [stdout] 10: 0x558151243d8c - std::panicking::default_hook::hd8ec13ee1bc2a65a [INFO] [stdout] at src/libstd/panicking.rs:207 [INFO] [stdout] 11: 0x558151244805 - std::panicking::rust_panic_with_hook::hf3b27166e5f403e7 [INFO] [stdout] at src/libstd/panicking.rs:473 [INFO] [stdout] 12: 0x5581512443a2 - std::panicking::continue_panic_fmt::hd961751be84a6f83 [INFO] [stdout] at src/libstd/panicking.rs:380 [INFO] [stdout] 13: 0x5581512442fc - std::panicking::begin_panic_fmt::h23ef54e17e5a13fa [INFO] [stdout] at src/libstd/panicking.rs:335 [INFO] [stdout] 14: 0x558150babe20 - recipe_calculator_lib::testing_config::get::h72df50f17e6b002d [INFO] [stdout] at src/testing_config.rs:12 [INFO] [stdout] 15: 0x558150ce7681 - recipe_calculator_lib::db::core::connection::DBConnection::for_admin_user::h0c4d6a0f9697f63f [INFO] [stdout] at src/db/core/connection.rs:37 [INFO] [stdout] 16: 0x558150c50321 - recipe_calculator_lib::db::core::app_user::app_user_test::delete_entry_with::h4c3f064334fc7a19 [INFO] [stdout] at src/db/core/./app_user_test.rs:15 [INFO] [stdout] 17: 0x558150c53f8c - recipe_calculator_lib::db::core::app_user::app_user_test::can_delete_user_by_id::h48a6bd5a68c68491 [INFO] [stdout] at src/db/core/./app_user_test.rs:80 [INFO] [stdout] 18: 0x558150c53f2a - recipe_calculator_lib::db::core::app_user::app_user_test::can_delete_user_by_id::{{closure}}::h26e11d068d1d7532 [INFO] [stdout] at src/db/core/./app_user_test.rs:78 [INFO] [stdout] 19: 0x558150bb414e - core::ops::function::FnOnce::call_once::hf3d0c11319eb4a68 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libcore/ops/function.rs:227 [INFO] [stdout] 20: 0x558150dbabbf - as core::ops::function::FnOnce>::call_once::h8b428e8a43aaf8e9 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 21: 0x55815124837a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 22: 0x558150dd53ce - std::panicking::try::heccce20d527a3513 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:271 [INFO] [stdout] 23: 0x558150dd53ce - std::panic::catch_unwind::h7fd8f5d3271f1692 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:394 [INFO] [stdout] 24: 0x558150dd53ce - test::run_test::run_test_inner::{{closure}}::h88b46e5c359957e5 [INFO] [stdout] at src/libtest/lib.rs:1413 [INFO] [stdout] 25: 0x558150db0435 - std::sys_common::backtrace::__rust_begin_short_backtrace::h00847676c8212941 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/sys_common/backtrace.rs:126 [INFO] [stdout] 26: 0x558150db45c5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h5dd37acd2295488e [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/thread/mod.rs:470 [INFO] [stdout] 27: 0x558150db45c5 - as core::ops::function::FnOnce<()>>::call_once::h9d32b103da0b97c6 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:315 [INFO] [stdout] 28: 0x558150db45c5 - std::panicking::try::do_call::h2bd819a3056c57cd [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:292 [INFO] [stdout] 29: 0x55815124837a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 30: 0x558150db4b72 - std::panicking::try::h243a25457a848a1a [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:271 [INFO] [stdout] 31: 0x558150db4b72 - std::panic::catch_unwind::h74b81f55e55e757c [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:394 [INFO] [stdout] 32: 0x558150db4b72 - std::thread::Builder::spawn_unchecked::{{closure}}::h4c2d214a2cffa6cf [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/thread/mod.rs:469 [INFO] [stdout] 33: 0x558150db4b72 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h8a8a187b3fb58e53 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libcore/ops/function.rs:227 [INFO] [stdout] 34: 0x558151236cdf - as core::ops::function::FnOnce>::call_once::h3cdef3b7ea22cd61 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 35: 0x558151247750 - as core::ops::function::FnOnce>::call_once::hc8f25720bf0d5424 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 36: 0x558151247750 - std::sys_common::thread::start_thread::h7e8885ccfd5d1932 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 37: 0x558151247750 - std::sys::unix::thread::Thread::new::thread_start::h5d24df932d688baf [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 38: 0x7f3fdc9a46db - start_thread [INFO] [stdout] 39: 0x7f3fdc4b588f - __clone [INFO] [stdout] 40: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- db::core::app_user::app_user_test::can_select_user_by_uid stdout ---- [INFO] [stdout] thread 'db::core::app_user::app_user_test::can_select_user_by_uid' panicked at 'Is env var CONFIG_FILE_PATH provided? Error: NotPresent', src/testing_config.rs:12:21 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x558151241be4 - backtrace::backtrace::libunwind::trace::hf625d18232cbbbd4 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.37/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x558151241be4 - backtrace::backtrace::trace_unsynchronized::h41d74150fc6ff542 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.37/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x558151241be4 - std::sys_common::backtrace::_print_fmt::h85d37830c667a1f9 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:76 [INFO] [stdout] 3: 0x558151241be4 - ::fmt::h2b7ac01d5feaf9b2 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:60 [INFO] [stdout] 4: 0x5581512622bc - core::fmt::write::h7fd0d904495c035f [INFO] [stdout] at src/libcore/fmt/mod.rs:1030 [INFO] [stdout] 5: 0x558150db0cc5 - std::io::Write::write_fmt::h424452e6ba861394 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/io/mod.rs:1412 [INFO] [stdout] 6: 0x55815123ac41 - std::io::impls::>::write_fmt::h814a51d8ae1dee4a [INFO] [stdout] at src/libstd/io/impls.rs:141 [INFO] [stdout] 7: 0x558151244105 - std::sys_common::backtrace::_print::h4c743f7c274a5a74 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:64 [INFO] [stdout] 8: 0x558151244105 - std::sys_common::backtrace::print::ha5c4f4bf03800d4d [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:49 [INFO] [stdout] 9: 0x558151244105 - std::panicking::default_hook::{{closure}}::h8b842185774c09e6 [INFO] [stdout] at src/libstd/panicking.rs:196 [INFO] [stdout] 10: 0x558151243d8c - std::panicking::default_hook::hd8ec13ee1bc2a65a [INFO] [stdout] at src/libstd/panicking.rs:207 [INFO] [stdout] 11: 0x558151244805 - std::panicking::rust_panic_with_hook::hf3b27166e5f403e7 [INFO] [stdout] at src/libstd/panicking.rs:473 [INFO] [stdout] 12: 0x5581512443a2 - std::panicking::continue_panic_fmt::hd961751be84a6f83 [INFO] [stdout] at src/libstd/panicking.rs:380 [INFO] [stdout] 13: 0x5581512442fc - std::panicking::begin_panic_fmt::h23ef54e17e5a13fa [INFO] [stdout] at src/libstd/panicking.rs:335 [INFO] [stdout] 14: 0x558150babe20 - recipe_calculator_lib::testing_config::get::h72df50f17e6b002d [INFO] [stdout] at src/testing_config.rs:12 [INFO] [stdout] 15: 0x558150ce7681 - recipe_calculator_lib::db::core::connection::DBConnection::for_admin_user::h0c4d6a0f9697f63f [INFO] [stdout] at src/db/core/connection.rs:37 [INFO] [stdout] 16: 0x558150c50321 - recipe_calculator_lib::db::core::app_user::app_user_test::delete_entry_with::h4c3f064334fc7a19 [INFO] [stdout] at src/db/core/./app_user_test.rs:15 [INFO] [stdout] 17: 0x558150c53c4c - recipe_calculator_lib::db::core::app_user::app_user_test::can_select_user_by_uid::hd6b0113ba4d4661c [INFO] [stdout] at src/db/core/./app_user_test.rs:65 [INFO] [stdout] 18: 0x558150c53bea - recipe_calculator_lib::db::core::app_user::app_user_test::can_select_user_by_uid::{{closure}}::hc3a8d6b84e8201a3 [INFO] [stdout] at src/db/core/./app_user_test.rs:63 [INFO] [stdout] 19: 0x558150bb286e - core::ops::function::FnOnce::call_once::h21e9d48264298e0e [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libcore/ops/function.rs:227 [INFO] [stdout] 20: 0x558150dbabbf - as core::ops::function::FnOnce>::call_once::h8b428e8a43aaf8e9 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 21: 0x55815124837a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 22: 0x558150dd53ce - std::panicking::try::heccce20d527a3513 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:271 [INFO] [stdout] 23: 0x558150dd53ce - std::panic::catch_unwind::h7fd8f5d3271f1692 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:394 [INFO] [stdout] 24: 0x558150dd53ce - test::run_test::run_test_inner::{{closure}}::h88b46e5c359957e5 [INFO] [stdout] at src/libtest/lib.rs:1413 [INFO] [stdout] 25: 0x558150db0435 - std::sys_common::backtrace::__rust_begin_short_backtrace::h00847676c8212941 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/sys_common/backtrace.rs:126 [INFO] [stdout] 26: 0x558150db45c5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h5dd37acd2295488e [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/thread/mod.rs:470 [INFO] [stdout] 27: 0x558150db45c5 - as core::ops::function::FnOnce<()>>::call_once::h9d32b103da0b97c6 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:315 [INFO] [stdout] 28: 0x558150db45c5 - std::panicking::try::do_call::h2bd819a3056c57cd [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:292 [INFO] [stdout] 29: 0x55815124837a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 30: 0x558150db4b72 - std::panicking::try::h243a25457a848a1a [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:271 [INFO] [stdout] 31: 0x558150db4b72 - std::panic::catch_unwind::h74b81f55e55e757c [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:394 [INFO] [stdout] 32: 0x558150db4b72 - std::thread::Builder::spawn_unchecked::{{closure}}::h4c2d214a2cffa6cf [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/thread/mod.rs:469 [INFO] [stdout] 33: 0x558150db4b72 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h8a8a187b3fb58e53 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libcore/ops/function.rs:227 [INFO] [stdout] 34: 0x558151236cdf - as core::ops::function::FnOnce>::call_once::h3cdef3b7ea22cd61 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 35: 0x558151247750 - as core::ops::function::FnOnce>::call_once::hc8f25720bf0d5424 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 36: 0x558151247750 - std::sys_common::thread::start_thread::h7e8885ccfd5d1932 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 37: 0x558151247750 - std::sys::unix::thread::Thread::new::thread_start::h5d24df932d688baf [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 38: 0x7f3fdc9a46db - start_thread [INFO] [stdout] 39: 0x7f3fdc4b588f - __clone [INFO] [stdout] 40: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- vk::vk_test::cant_check_client_token_if_server_token_invalid stdout ---- [INFO] [stdout] thread 'vk::vk_test::cant_check_client_token_if_server_token_invalid' panicked at 'called `Result::unwrap()` on an `Err` value: Error(HyperError(Error { kind: Connect, cause: Custom { kind: Other, error: "failed to lookup address information: Temporary failure in name resolution" } }), State { next_error: None, backtrace: Some(stack backtrace: [INFO] [stdout] 0: error_chain::make_backtrace::hc69b7cf9a76dce52 (0x5581511bf642) [INFO] [stdout] at /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.11.0/src/lib.rs:616 [INFO] [stdout] 1: ::default::he4c3bc306da389e8 (0x5581511bf6a2) [INFO] [stdout] at /opt/rustwide/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.11.0/src/lib.rs:710 [INFO] [stdout] 2: recipe_calculator_lib::error::Error::from_kind::h005eaaff988d24eb (0x558150bad493) [INFO] [stdout] at /opt/rustwide/workdir/<::error_chain::error_chain::impl_error_chain_processed macros>:72 [INFO] [stdout] 3: >::from::h1ca8099ebfcd9b0b (0x558150bad5e8) [INFO] [stdout] at src/error.rs:9 [INFO] [stdout] 4: recipe_calculator_lib::http_client::make_blocking_request::hd29b5c3d305605e7 (0x558150c51780) [INFO] [stdout] at src/http_client.rs:21 [INFO] [stdout] 5: recipe_calculator_lib::vk::check_token::hb773cab6705cf4c4 (0x558150c52cd9) [INFO] [stdout] at src/vk.rs:110 [INFO] [stdout] 6: recipe_calculator_lib::vk::vk_test::cant_check_client_token_if_server_token_invalid::hdb020cac9d909346 (0x558150d69f19) [INFO] [stdout] at src/./vk_test.rs:27 [INFO] [stdout] 7: recipe_calculator_lib::vk::vk_test::cant_check_client_token_if_server_token_invalid::{{closure}}::h4ae0759334fbabaa (0x558150d69e99) [INFO] [stdout] at src/./vk_test.rs:23 [INFO] [stdout] 8: core::ops::function::FnOnce::call_once::he975ee3886aec0a5 (0x558150bb404d) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libcore/ops/function.rs:227 [INFO] [stdout] 9: as core::ops::function::FnOnce>::call_once::h8b428e8a43aaf8e9 (0x558150dbabbe) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 10: __rust_maybe_catch_panic (0x558151248379) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 11: std::panicking::try::heccce20d527a3513 (0x558150dd53cd) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:271 [INFO] [stdout] std::panic::catch_unwind::h7fd8f5d3271f1692 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:394 [INFO] [stdout] test::run_test::run_test_inner::{{closure}}::h88b46e5c359957e5 [INFO] [stdout] at src/libtest/lib.rs:1413 [INFO] [stdout] 12: std::sys_common::backtrace::__rust_begin_short_backtrace::h00847676c8212941 (0x558150db0434) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/sys_common/backtrace.rs:126 [INFO] [stdout] 13: std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h5dd37acd2295488e (0x558150db45c4) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/thread/mod.rs:470 [INFO] [stdout] as core::ops::function::FnOnce<()>>::call_once::h9d32b103da0b97c6 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:315 [INFO] [stdout] std::panicking::try::do_call::h2bd819a3056c57cd [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:292 [INFO] [stdout] 14: __rust_maybe_catch_panic (0x558151248379) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 15: std::panicking::try::h243a25457a848a1a (0x558150db4b71) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panicking.rs:271 [INFO] [stdout] std::panic::catch_unwind::h74b81f55e55e757c [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/panic.rs:394 [INFO] [stdout] std::thread::Builder::spawn_unchecked::{{closure}}::h4c2d214a2cffa6cf [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libstd/thread/mod.rs:469 [INFO] [stdout] core::ops::function::FnOnce::call_once{{vtable.shim}}::h8a8a187b3fb58e53 [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/libcore/ops/function.rs:227 [INFO] [stdout] 16: as core::ops::function::FnOnce>::call_once::h3cdef3b7ea22cd61 (0x558151236cde) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] 17: as core::ops::function::FnOnce>::call_once::hc8f25720bf0d5424 (0x55815124774f) [INFO] [stdout] at /rustc/5752b6348ee6971573b278c315a02193c847ee32/src/liballoc/boxed.rs:922 [INFO] [stdout] std::sys_common::thread::start_thread::h7e8885ccfd5d1932 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] std::sys::unix::thread::Thread::new::thread_start::h5d24df932d688baf [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 18: start_thread (0x7f3fdc9a46da) [INFO] [stdout] 19: __clone (0x7f3fdc4b588e) [INFO] [stdout] 20: (0x0)) })', src/libcore/result.rs:1165:5 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] db::core::app_user::app_user_test::can_delete_user_by_id [INFO] [stdout] db::core::app_user::app_user_test::can_select_user_by_uid [INFO] [stdout] db::core::app_user::app_user_test::cant_delete_user_with_client_connection [INFO] [stdout] db::core::app_user::app_user_test::cant_insert_user_with_already_used_uid [INFO] [stdout] db::core::app_user::app_user_test::insertion_and_selection_work [INFO] [stdout] db::core::connection::connection_test::connection_constructs_with_valid_config [INFO] [stdout] db::core::device::device_test::can_delete_device_by_id [INFO] [stdout] db::core::device::device_test::can_select_by_uuid [INFO] [stdout] db::core::device::device_test::cant_delete_device_with_client_connection [INFO] [stdout] db::core::device::device_test::cant_insert_device_with_already_used_uuid [INFO] [stdout] db::core::device::device_test::insertion_and_selection_work [INFO] [stdout] db::core::device::device_test::multiple_devices_can_depend_on_single_app_user [INFO] [stdout] db::core::diesel_macro::diesel_macro_test::delete_macro_works [INFO] [stdout] db::core::diesel_macro::diesel_macro_test::insert_macro_works [INFO] [stdout] db::core::diesel_macro::diesel_macro_test::select_macro_works [INFO] [stdout] db::core::diesel_macro::diesel_macro_test::unique_violation_error_returned_on_unique_violation [INFO] [stdout] db::core::diesel_macro::diesel_macro_test::update_macro_returns_updated_values [INFO] [stdout] db::core::diesel_macro::diesel_macro_test::update_macro_works [INFO] [stdout] db::core::diesel_test::operations_without_transactions_dont_roll_back [INFO] [stdout] db::core::diesel_test::transition_rolls_back_progress_when_interrupted [INFO] [stdout] db::core::foodstuff::foodstuff_test::can_make_foodstuff_unlisted [INFO] [stdout] db::core::foodstuff::foodstuff_test::insertion_and_selection_work [INFO] [stdout] db::core::foodstuff::foodstuff_test::making_already_unlisted_foodstuff_unlisted_does_nothing [INFO] [stdout] db::core::foodstuff::foodstuff_test::multiple_foodstuffs_can_depend_on_single_app_user [INFO] [stdout] db::core::foodstuff::foodstuff_test::multiple_foodstuffs_with_same_aufi_cannot_depend_on_single_app_user [INFO] [stdout] db::core::transaction::transaction_test::returns_correct_error [INFO] [stdout] db::core::transaction::transaction_test::returns_correct_value [INFO] [stdout] db::core::transaction::transaction_test::transaction_works [INFO] [stdout] db::core::vk_user::vk_user_test::cant_insert_vk_user_with_already_used_vk_uid [INFO] [stdout] db::core::vk_user::vk_user_test::insertion_and_selection_work [INFO] [stdout] db::core::vk_user::vk_user_test::multiple_vk_users_cannot_depend_on_single_app_user [INFO] [stdout] db::pool::connection_pool::connection_pool_test::can_borrow_and_put_back [INFO] [stdout] db::pool::connection_pool::connection_pool_test::connections_are_reused [INFO] [stdout] server::client_cmd::client_cmd_test::device_id_duplication_leaves_user_not_created [INFO] [stdout] server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_device_id_duplication [INFO] [stdout] server::client_cmd::client_cmd_test::device_registration_returns_duplication_error_on_uid_duplication [INFO] [stdout] server::client_cmd::client_cmd_test::device_registration_works [INFO] [stdout] server::client_cmd::client_cmd_test::uid_duplication_leaves_device_not_created [INFO] [stdout] server::requests_handler_impl::requests_handler_impl_test::random_client_doesnt_exists [INFO] [stdout] server::requests_handler_impl::requests_handler_impl_test::test_register_client_cmd [INFO] [stdout] vk::vk_test::can_check_client_token [INFO] [stdout] vk::vk_test::cant_check_client_token_if_server_token_invalid [INFO] [stdout] [INFO] [stdout] test result: FAILED. 4 passed; 42 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--lib' [INFO] running `"docker" "inspect" "ee187029b6392490d6000a10147fcb234f1fceb7c6dc8205ec3f16c162f8fb96"` [INFO] running `"docker" "rm" "-f" "ee187029b6392490d6000a10147fcb234f1fceb7c6dc8205ec3f16c162f8fb96"` [INFO] [stdout] ee187029b6392490d6000a10147fcb234f1fceb7c6dc8205ec3f16c162f8fb96