[INFO] crate trek 0.3.1 is already in cache [INFO] extracting crate trek 0.3.1 into work/ex/beta-1.37-6/sources/1.36.0/reg/trek/0.3.1 [INFO] extracting crate trek 0.3.1 into work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/trek/0.3.1 [INFO] validating manifest of trek-0.3.1 on toolchain 1.36.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of trek-0.3.1 on toolchain beta-2019-07-23 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing trek-0.3.1 [INFO] removed 0 missing examples [INFO] removed 0 missing tests [INFO] finished frobbing trek-0.3.1 [INFO] frobbed toml for trek-0.3.1 written to work/ex/beta-1.37-6/sources/1.36.0/reg/trek/0.3.1/Cargo.toml [INFO] started frobbing trek-0.3.1 [INFO] removed 0 missing examples [INFO] removed 0 missing tests [INFO] finished frobbing trek-0.3.1 [INFO] frobbed toml for trek-0.3.1 written to work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/trek/0.3.1/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing trek-0.3.1 against beta-2019-07-23 for beta-1.37-6 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-0/beta-2019-07-23:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/trek/0.3.1:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-07-23" "build" "--frozen"` [INFO] [stdout] 98ebaee4416ad2bc55b534dca9cbb8f75fcc5fa235b7edc48efec9d9384852ac [INFO] running `"docker" "start" "-a" "98ebaee4416ad2bc55b534dca9cbb8f75fcc5fa235b7edc48efec9d9384852ac"` [INFO] [stderr] warning: An explicit [[example]] section is specified in Cargo.toml which currently [INFO] [stderr] disables Cargo from automatically inferring other example targets. [INFO] [stderr] This inference behavior will change in the Rust 2018 edition and the following [INFO] [stderr] files will be included as a example target: [INFO] [stderr] [INFO] [stderr] * /opt/crater/workdir/examples/migration_index.rs [INFO] [stderr] [INFO] [stderr] This is likely to break cargo build or cargo test as these files may not be [INFO] [stderr] ready to be compiled as a example target today. You can future-proof yourself [INFO] [stderr] and disable this warning by adding `autoexamples = false` to your [package] [INFO] [stderr] section. You may also move the files to a location where Cargo would not [INFO] [stderr] automatically infer them to be a target, such as in subfolders. [INFO] [stderr] [INFO] [stderr] For more information on this warning you can consult [INFO] [stderr] https://github.com/rust-lang/cargo/issues/5330 [INFO] [stderr] Compiling chrono v0.2.25 [INFO] [stderr] Compiling trek v0.3.1 (/opt/crater/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration.rs:10:32 [INFO] [stderr] | [INFO] [stderr] 10 | fn up(&self, transaction: &postgres::GenericConnection) -> Result<()>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [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/migration.rs:12:34 [INFO] [stderr] | [INFO] [stderr] 12 | fn down(&self, transaction: &postgres::GenericConnection) -> Result<()>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:14:25 [INFO] [stderr] | [INFO] [stderr] 14 | migrations: Vec> [INFO] [stderr] | ^^^^^^^^^ help: use `dyn`: `dyn Migration` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:19:40 [INFO] [stderr] | [INFO] [stderr] 19 | pub fn new(mut migrations: Vec>) -> Self { [INFO] [stderr] | ^^^^^^^^^ help: use `dyn`: `dyn Migration` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:65:36 [INFO] [stderr] | [INFO] [stderr] 65 | pub fn run(&self, connection: &GenericConnection) -> Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:136:41 [INFO] [stderr] | [INFO] [stderr] 136 | pub fn rollback(&self, connection: &GenericConnection) -> Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:253:22 [INFO] [stderr] | [INFO] [stderr] 253 | connection: &GenericConnection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:275:80 [INFO] [stderr] | [INFO] [stderr] 275 | fn outstanding_migrations(&self, current_version: Option) -> &[Box] { [INFO] [stderr] | ^^^^^^^^^ help: use `dyn`: `dyn Migration` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:303:22 [INFO] [stderr] | [INFO] [stderr] 303 | connection: &GenericConnection, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 4.41s [INFO] running `"docker" "inspect" "98ebaee4416ad2bc55b534dca9cbb8f75fcc5fa235b7edc48efec9d9384852ac"` [INFO] running `"docker" "rm" "-f" "98ebaee4416ad2bc55b534dca9cbb8f75fcc5fa235b7edc48efec9d9384852ac"` [INFO] [stdout] 98ebaee4416ad2bc55b534dca9cbb8f75fcc5fa235b7edc48efec9d9384852ac [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-0/beta-2019-07-23:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/trek/0.3.1:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-07-23" "test" "--frozen" "--no-run"` [INFO] [stdout] bd4a5d82d05d31cd2b5a580e3e54ad3ba3ae159fe1d8ae894728931d469add06 [INFO] running `"docker" "start" "-a" "bd4a5d82d05d31cd2b5a580e3e54ad3ba3ae159fe1d8ae894728931d469add06"` [INFO] [stderr] warning: An explicit [[example]] section is specified in Cargo.toml which currently [INFO] [stderr] disables Cargo from automatically inferring other example targets. [INFO] [stderr] This inference behavior will change in the Rust 2018 edition and the following [INFO] [stderr] files will be included as a example target: [INFO] [stderr] [INFO] [stderr] * /opt/crater/workdir/examples/migration_index.rs [INFO] [stderr] [INFO] [stderr] This is likely to break cargo build or cargo test as these files may not be [INFO] [stderr] ready to be compiled as a example target today. You can future-proof yourself [INFO] [stderr] and disable this warning by adding `autoexamples = false` to your [package] [INFO] [stderr] section. You may also move the files to a location where Cargo would not [INFO] [stderr] automatically infer them to be a target, such as in subfolders. [INFO] [stderr] [INFO] [stderr] For more information on this warning you can consult [INFO] [stderr] https://github.com/rust-lang/cargo/issues/5330 [INFO] [stderr] Compiling docopt v0.6.86 [INFO] [stderr] Compiling trek v0.3.1 (/opt/crater/workdir) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration.rs:10:32 [INFO] [stderr] | [INFO] [stderr] 10 | fn up(&self, transaction: &postgres::GenericConnection) -> Result<()>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [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/migration.rs:12:34 [INFO] [stderr] | [INFO] [stderr] 12 | fn down(&self, transaction: &postgres::GenericConnection) -> Result<()>; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:14:25 [INFO] [stderr] | [INFO] [stderr] 14 | migrations: Vec> [INFO] [stderr] | ^^^^^^^^^ help: use `dyn`: `dyn Migration` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:19:40 [INFO] [stderr] | [INFO] [stderr] 19 | pub fn new(mut migrations: Vec>) -> Self { [INFO] [stderr] | ^^^^^^^^^ help: use `dyn`: `dyn Migration` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:65:36 [INFO] [stderr] | [INFO] [stderr] 65 | pub fn run(&self, connection: &GenericConnection) -> Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:136:41 [INFO] [stderr] | [INFO] [stderr] 136 | pub fn rollback(&self, connection: &GenericConnection) -> Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:253:22 [INFO] [stderr] | [INFO] [stderr] 253 | connection: &GenericConnection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:275:80 [INFO] [stderr] | [INFO] [stderr] 275 | fn outstanding_migrations(&self, current_version: Option) -> &[Box] { [INFO] [stderr] | ^^^^^^^^^ help: use `dyn`: `dyn Migration` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/migration_index.rs:303:22 [INFO] [stderr] | [INFO] [stderr] 303 | connection: &GenericConnection, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/good_migration_1.rs:17:32 [INFO] [stderr] | [INFO] [stderr] 17 | fn up(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [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] --> tests/types/good_migration_1.rs:27:34 [INFO] [stderr] | [INFO] [stderr] 27 | fn down(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/good_migration_2.rs:18:32 [INFO] [stderr] | [INFO] [stderr] 18 | fn up(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/good_migration_2.rs:26:34 [INFO] [stderr] | [INFO] [stderr] 26 | fn down(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/good_migration_up_bad_migration_down.rs:18:32 [INFO] [stderr] | [INFO] [stderr] 18 | fn up(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/good_migration_up_bad_migration_down.rs:31:34 [INFO] [stderr] | [INFO] [stderr] 31 | fn down(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/bad_migration_1.rs:18:32 [INFO] [stderr] | [INFO] [stderr] 18 | fn up(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/types/bad_migration_1.rs:22:34 [INFO] [stderr] | [INFO] [stderr] 22 | fn down(&self, transaction: &GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migration_index.rs:14:36 [INFO] [stderr] | [INFO] [stderr] 14 | pub fn new(migrations: Vec>) -> Self { [INFO] [stderr] | ^^^^^^^^^^^^^ help: use `dyn`: `dyn TrekMigration` [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] --> examples/migration_index.rs:21:36 [INFO] [stderr] | [INFO] [stderr] 21 | pub fn run(&self, connection: &GenericConnection) -> Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migration_index.rs:26:41 [INFO] [stderr] | [INFO] [stderr] 26 | pub fn rollback(&self, connection: &GenericConnection) -> Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migration_index.rs:32:22 [INFO] [stderr] | [INFO] [stderr] 32 | connection: &GenericConnection [INFO] [stderr] | ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migrations/migration_20150826001350_create_users_table.rs:19:31 [INFO] [stderr] | [INFO] [stderr] 19 | fn up(&self, connection: &postgres::GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migrations/migration_20150826001350_create_users_table.rs:32:33 [INFO] [stderr] | [INFO] [stderr] 32 | fn down(&self, connection: &postgres::GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migrations/migration_20151008562095_create_companies_table.rs:19:31 [INFO] [stderr] | [INFO] [stderr] 19 | fn up(&self, connection: &postgres::GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> examples/migrations/migration_20151008562095_create_companies_table.rs:36:33 [INFO] [stderr] | [INFO] [stderr] 36 | fn down(&self, connection: &postgres::GenericConnection) -> postgres::Result<()> { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn postgres::GenericConnection` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 7.68s [INFO] running `"docker" "inspect" "bd4a5d82d05d31cd2b5a580e3e54ad3ba3ae159fe1d8ae894728931d469add06"` [INFO] running `"docker" "rm" "-f" "bd4a5d82d05d31cd2b5a580e3e54ad3ba3ae159fe1d8ae894728931d469add06"` [INFO] [stdout] bd4a5d82d05d31cd2b5a580e3e54ad3ba3ae159fe1d8ae894728931d469add06 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-0/beta-2019-07-23:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/trek/0.3.1:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-07-23" "test" "--frozen"` [INFO] [stdout] 003c636309d70e0da82a6f7836fb9b3464f09f48b81ce85d1b671d8d18d052dd [INFO] running `"docker" "start" "-a" "003c636309d70e0da82a6f7836fb9b3464f09f48b81ce85d1b671d8d18d052dd"` [INFO] [stderr] warning: An explicit [[example]] section is specified in Cargo.toml which currently [INFO] [stderr] disables Cargo from automatically inferring other example targets. [INFO] [stderr] This inference behavior will change in the Rust 2018 edition and the following [INFO] [stderr] files will be included as a example target: [INFO] [stderr] [INFO] [stderr] * /opt/crater/workdir/examples/migration_index.rs [INFO] [stderr] [INFO] [stderr] This is likely to break cargo build or cargo test as these files may not be [INFO] [stderr] ready to be compiled as a example target today. You can future-proof yourself [INFO] [stderr] and disable this warning by adding `autoexamples = false` to your [package] [INFO] [stderr] section. You may also move the files to a location where Cargo would not [INFO] [stderr] automatically infer them to be a target, such as in subfolders. [INFO] [stderr] [INFO] [stderr] For more information on this warning you can consult [INFO] [stderr] https://github.com/rust-lang/cargo/issues/5330 [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.08s [INFO] [stderr] Running /opt/crater/target/debug/deps/trek-d19db055ec0dcca8 [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 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 6 tests [INFO] [stderr] Running /opt/crater/target/debug/deps/test-64c8cf77ee04052e [INFO] [stdout] test can_rollback_migration ... FAILED [INFO] [stdout] test can_rollback_migrations_sequentially ... FAILED [INFO] [stdout] test fails_gracefully_on_migration_rollback_error ... FAILED [INFO] [stdout] test can_apply_migrations_sequentially ... FAILED [INFO] [stdout] test can_run_migration ... FAILED [INFO] [stdout] test fails_gracefully_on_migration_run_error ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- can_rollback_migration stdout ---- [INFO] [stdout] thread 'can_rollback_migration' panicked at 'TREK_TEST_DB_PARAMS environment variable is unset. This environment variable should contain a database connection string for a PostgreSQL database to use when testing. This string should take the form: [INFO] [stdout] postgresql://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]] [INFO] [stdout] See the rust-postgres documentation for more details: [INFO] [stdout] https://sfackler.github.io/rust-postgres/doc/postgres/struct.Connection.html#method.connect [INFO] [stdout] ', src/libcore/option.rs:1034:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5616ecc3e7fb - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x5616ecc3e7fb - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x5616ecc3e7fb - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x5616ecc3e7fb - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x5616ecc3e7fb - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x5616ecc3e46a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x5616ecc3ef70 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x5616ecc3eaf2 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x5616ecc3e9d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x5616ecc5592d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x5616ecc55997 - core::option::expect_failed::hb4b68491f0430a25 [INFO] [stdout] at src/libcore/option.rs:1034 [INFO] [stdout] 11: 0x5616eca804eb - core::option::Option::expect::h80f380d97c940f44 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/option.rs:314 [INFO] [stdout] 12: 0x5616eca7160e - test::new_test_connection::h9373bf450b86b82b [INFO] [stdout] at tests/test.rs:21 [INFO] [stdout] 13: 0x5616eca71f51 - test::can_rollback_migration::h9278e624e5d1b217 [INFO] [stdout] at tests/test.rs:61 [INFO] [stdout] 14: 0x5616eca71f2a - test::can_rollback_migration::{{closure}}::h0f7ffb1ea7b75dd8 [INFO] [stdout] at tests/test.rs:60 [INFO] [stdout] 15: 0x5616eca7d77e - core::ops::function::FnOnce::call_once::h2b784e67d1e113ad [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 16: 0x5616eca8ba3f - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 17: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 18: 0x5616ecaa6038 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 19: 0x5616ecaa6038 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 20: 0x5616ecaa6038 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 21: 0x5616eca80eb5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 22: 0x5616eca85035 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 23: 0x5616eca85035 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 24: 0x5616eca85035 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 25: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 26: 0x5616eca85672 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 27: 0x5616eca85672 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 28: 0x5616eca85672 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 29: 0x5616eca85672 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 30: 0x5616ecc328ff - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x5616ecc41ae0 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 32: 0x5616ecc41ae0 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 33: 0x5616ecc41ae0 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 34: 0x7f7aa30d44a4 - start_thread [INFO] [stdout] 35: 0x7f7aa2bffd0f - __clone [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- can_rollback_migrations_sequentially stdout ---- [INFO] [stdout] thread 'can_rollback_migrations_sequentially' panicked at 'TREK_TEST_DB_PARAMS environment variable is unset. This environment variable should contain a database connection string for a PostgreSQL database to use when testing. This string should take the form: [INFO] [stdout] postgresql://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]] [INFO] [stdout] See the rust-postgres documentation for more details: [INFO] [stdout] https://sfackler.github.io/rust-postgres/doc/postgres/struct.Connection.html#method.connect [INFO] [stdout] ', src/libcore/option.rs:1034:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5616ecc3e7fb - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x5616ecc3e7fb - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x5616ecc3e7fb - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x5616ecc3e7fb - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x5616ecc3e7fb - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x5616ecc3e46a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x5616ecc3ef70 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x5616ecc3eaf2 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x5616ecc3e9d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x5616ecc5592d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x5616ecc55997 - core::option::expect_failed::hb4b68491f0430a25 [INFO] [stdout] at src/libcore/option.rs:1034 [INFO] [stdout] 11: 0x5616eca804eb - core::option::Option::expect::h80f380d97c940f44 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/option.rs:314 [INFO] [stdout] 12: 0x5616eca7160e - test::new_test_connection::h9373bf450b86b82b [INFO] [stdout] at tests/test.rs:21 [INFO] [stdout] 13: 0x5616eca7304c - test::can_rollback_migrations_sequentially::hb95822f742a469c9 [INFO] [stdout] at tests/test.rs:114 [INFO] [stdout] 14: 0x5616eca7301a - test::can_rollback_migrations_sequentially::{{closure}}::hef1f389f9196a013 [INFO] [stdout] at tests/test.rs:113 [INFO] [stdout] 15: 0x5616eca7d8de - core::ops::function::FnOnce::call_once::he9517a2cc8fb409b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 16: 0x5616eca8ba3f - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 17: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 18: 0x5616ecaa6038 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 19: 0x5616ecaa6038 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 20: 0x5616ecaa6038 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 21: 0x5616eca80eb5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 22: 0x5616eca85035 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 23: 0x5616eca85035 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 24: 0x5616eca85035 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 25: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 26: 0x5616eca85672 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 27: 0x5616eca85672 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 28: 0x5616eca85672 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 29: 0x5616eca85672 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 30: 0x5616ecc328ff - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x5616ecc41ae0 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 32: 0x5616ecc41ae0 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 33: 0x5616ecc41ae0 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 34: 0x7f7aa30d44a4 - start_thread [INFO] [stdout] 35: 0x7f7aa2bffd0f - __clone [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- fails_gracefully_on_migration_rollback_error stdout ---- [INFO] [stdout] thread 'fails_gracefully_on_migration_rollback_error' panicked at 'TREK_TEST_DB_PARAMS environment variable is unset. This environment variable should contain a database connection string for a PostgreSQL database to use when testing. This string should take the form: [INFO] [stdout] postgresql://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]] [INFO] [stdout] See the rust-postgres documentation for more details: [INFO] [stdout] https://sfackler.github.io/rust-postgres/doc/postgres/struct.Connection.html#method.connect [INFO] [stdout] ', src/libcore/option.rs:1034:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5616ecc3e7fb - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x5616ecc3e7fb - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x5616ecc3e7fb - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x5616ecc3e7fb - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x5616ecc3e7fb - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x5616ecc3e46a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x5616ecc3ef70 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x5616ecc3eaf2 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x5616ecc3e9d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x5616ecc5592d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x5616ecc55997 - core::option::expect_failed::hb4b68491f0430a25 [INFO] [stdout] at src/libcore/option.rs:1034 [INFO] [stdout] 11: 0x5616eca804eb - core::option::Option::expect::h80f380d97c940f44 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/option.rs:314 [INFO] [stdout] 12: 0x5616eca7160e - test::new_test_connection::h9373bf450b86b82b [INFO] [stdout] at tests/test.rs:21 [INFO] [stdout] 13: 0x5616eca743f1 - test::fails_gracefully_on_migration_rollback_error::he0f2da01240713a6 [INFO] [stdout] at tests/test.rs:168 [INFO] [stdout] 14: 0x5616eca743ca - test::fails_gracefully_on_migration_rollback_error::{{closure}}::h10846e06e977e24d [INFO] [stdout] at tests/test.rs:167 [INFO] [stdout] 15: 0x5616eca7d91e - core::ops::function::FnOnce::call_once::hff2e4a8cd807a564 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 16: 0x5616eca8ba3f - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 17: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 18: 0x5616ecaa6038 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 19: 0x5616ecaa6038 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 20: 0x5616ecaa6038 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 21: 0x5616eca80eb5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 22: 0x5616eca85035 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 23: 0x5616eca85035 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 24: 0x5616eca85035 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 25: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 26: 0x5616eca85672 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 27: 0x5616eca85672 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 28: 0x5616eca85672 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 29: 0x5616eca85672 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 30: 0x5616ecc328ff - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x5616ecc41ae0 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 32: 0x5616ecc41ae0 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 33: 0x5616ecc41ae0 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 34: 0x7f7aa30d44a4 - start_thread [INFO] [stdout] 35: 0x7f7aa2bffd0f - __clone [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- can_apply_migrations_sequentially stdout ---- [INFO] [stdout] thread 'can_apply_migrations_sequentially' panicked at 'TREK_TEST_DB_PARAMS environment variable is unset. This environment variable should contain a database connection string for a PostgreSQL database to use when testing. This string should take the form: [INFO] [stdout] postgresql://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]] [INFO] [stdout] See the rust-postgres documentation for more details: [INFO] [stdout] https://sfackler.github.io/rust-postgres/doc/postgres/struct.Connection.html#method.connect [INFO] [stdout] ', src/libcore/option.rs:1034:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5616ecc3e7fb - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x5616ecc3e7fb - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x5616ecc3e7fb - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x5616ecc3e7fb - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x5616ecc3e7fb - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x5616ecc3e46a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x5616ecc3ef70 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x5616ecc3eaf2 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x5616ecc3e9d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x5616ecc5592d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x5616ecc55997 - core::option::expect_failed::hb4b68491f0430a25 [INFO] [stdout] at src/libcore/option.rs:1034 [INFO] [stdout] 11: 0x5616eca804eb - core::option::Option::expect::h80f380d97c940f44 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/option.rs:314 [INFO] [stdout] 12: 0x5616eca7160e - test::new_test_connection::h9373bf450b86b82b [INFO] [stdout] at tests/test.rs:21 [INFO] [stdout] 13: 0x5616eca7270c - test::can_apply_migrations_sequentially::h6c0e9a1e41aa1fb6 [INFO] [stdout] at tests/test.rs:85 [INFO] [stdout] 14: 0x5616eca726da - test::can_apply_migrations_sequentially::{{closure}}::h4d9978c09a4ef35e [INFO] [stdout] at tests/test.rs:84 [INFO] [stdout] 15: 0x5616eca7d73e - core::ops::function::FnOnce::call_once::h181102774d6467a6 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 16: 0x5616eca8ba3f - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 17: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 18: 0x5616ecaa6038 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 19: 0x5616ecaa6038 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 20: 0x5616ecaa6038 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 21: 0x5616eca80eb5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 22: 0x5616eca85035 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 23: 0x5616eca85035 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 24: 0x5616eca85035 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 25: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 26: 0x5616eca85672 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 27: 0x5616eca85672 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 28: 0x5616eca85672 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 29: 0x5616eca85672 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 30: 0x5616ecc328ff - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x5616ecc41ae0 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 32: 0x5616ecc41ae0 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 33: 0x5616ecc41ae0 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 34: 0x7f7aa30d44a4 - start_thread [INFO] [stdout] 35: 0x7f7aa2bffd0f - __clone [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- can_run_migration stdout ---- [INFO] [stdout] thread 'can_run_migration' panicked at 'TREK_TEST_DB_PARAMS environment variable is unset. This environment variable should contain a database connection string for a PostgreSQL database to use when testing. This string should take the form: [INFO] [stdout] postgresql://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]] [INFO] [stdout] See the rust-postgres documentation for more details: [INFO] [stdout] https://sfackler.github.io/rust-postgres/doc/postgres/struct.Connection.html#method.connect [INFO] [stdout] ', src/libcore/option.rs:1034:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5616ecc3e7fb - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x5616ecc3e7fb - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x5616ecc3e7fb - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x5616ecc3e7fb - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x5616ecc3e7fb - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x5616ecc3e46a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x5616ecc3ef70 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x5616ecc3eaf2 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x5616ecc3e9d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x5616ecc5592d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x5616ecc55997 - core::option::expect_failed::hb4b68491f0430a25 [INFO] [stdout] at src/libcore/option.rs:1034 [INFO] [stdout] 11: 0x5616eca804eb - core::option::Option::expect::h80f380d97c940f44 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/option.rs:314 [INFO] [stdout] 12: 0x5616eca7160e - test::new_test_connection::h9373bf450b86b82b [INFO] [stdout] at tests/test.rs:21 [INFO] [stdout] 13: 0x5616eca716dc - test::can_run_migration::hf680f9de3368de1d [INFO] [stdout] at tests/test.rs:35 [INFO] [stdout] 14: 0x5616eca716aa - test::can_run_migration::{{closure}}::h7e4ca4c346a17e4f [INFO] [stdout] at tests/test.rs:34 [INFO] [stdout] 15: 0x5616eca7d7fe - core::ops::function::FnOnce::call_once::h5a9325eaeb256712 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 16: 0x5616eca8ba3f - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 17: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 18: 0x5616ecaa6038 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 19: 0x5616ecaa6038 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 20: 0x5616ecaa6038 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 21: 0x5616eca80eb5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 22: 0x5616eca85035 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 23: 0x5616eca85035 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 24: 0x5616eca85035 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 25: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 26: 0x5616eca85672 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 27: 0x5616eca85672 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 28: 0x5616eca85672 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 29: 0x5616eca85672 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 30: 0x5616ecc328ff - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x5616ecc41ae0 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 32: 0x5616ecc41ae0 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 33: 0x5616ecc41ae0 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 34: 0x7f7aa30d44a4 - start_thread [INFO] [stdout] 35: 0x7f7aa2bffd0f - __clone [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- fails_gracefully_on_migration_run_error stdout ---- [INFO] [stdout] thread 'fails_gracefully_on_migration_run_error' panicked at 'TREK_TEST_DB_PARAMS environment variable is unset. This environment variable should contain a database connection string for a PostgreSQL database to use when testing. This string should take the form: [INFO] [stdout] postgresql://user[:password]@host[:port][/database][?param1=val1[[¶m2=val2]...]] [INFO] [stdout] See the rust-postgres documentation for more details: [INFO] [stdout] https://sfackler.github.io/rust-postgres/doc/postgres/struct.Connection.html#method.connect [INFO] [stdout] ', src/libcore/option.rs:1034:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x5616ecc3e7fb - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x5616ecc3e7fb - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x5616ecc3e7fb - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x5616ecc3e7fb - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x5616ecc3e7fb - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x5616ecc3e46a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x5616ecc3ef70 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x5616ecc3eaf2 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x5616ecc3e9d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x5616ecc5592d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x5616ecc55997 - core::option::expect_failed::hb4b68491f0430a25 [INFO] [stdout] at src/libcore/option.rs:1034 [INFO] [stdout] 11: 0x5616eca804eb - core::option::Option::expect::h80f380d97c940f44 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/option.rs:314 [INFO] [stdout] 12: 0x5616eca7160e - test::new_test_connection::h9373bf450b86b82b [INFO] [stdout] at tests/test.rs:21 [INFO] [stdout] 13: 0x5616eca74141 - test::fails_gracefully_on_migration_run_error::h315fa29d54d0575b [INFO] [stdout] at tests/test.rs:158 [INFO] [stdout] 14: 0x5616eca7411a - test::fails_gracefully_on_migration_run_error::{{closure}}::h010ea7bc242fd144 [INFO] [stdout] at tests/test.rs:157 [INFO] [stdout] 15: 0x5616eca7d7be - core::ops::function::FnOnce::call_once::h43e124e58a12c630 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 16: 0x5616eca8ba3f - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 17: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 18: 0x5616ecaa6038 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 19: 0x5616ecaa6038 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 20: 0x5616ecaa6038 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 21: 0x5616eca80eb5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 22: 0x5616eca85035 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 23: 0x5616eca85035 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 24: 0x5616eca85035 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 25: 0x5616ecc4238a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 26: 0x5616eca85672 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 27: 0x5616eca85672 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 28: 0x5616eca85672 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 29: 0x5616eca85672 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 30: 0x5616ecc328ff - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x5616ecc41ae0 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 32: 0x5616ecc41ae0 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 33: 0x5616ecc41ae0 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 34: 0x7f7aa30d44a4 - start_thread [INFO] [stdout] 35: 0x7f7aa2bffd0f - __clone [INFO] [stdout] 36: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] can_apply_migrations_sequentially [INFO] [stdout] can_rollback_migration [INFO] [stdout] can_rollback_migrations_sequentially [INFO] [stdout] can_run_migration [INFO] [stdout] fails_gracefully_on_migration_rollback_error [INFO] [stdout] fails_gracefully_on_migration_run_error [INFO] [stdout] [INFO] [stdout] test result: FAILED. 0 passed; 6 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--test test' [INFO] running `"docker" "inspect" "003c636309d70e0da82a6f7836fb9b3464f09f48b81ce85d1b671d8d18d052dd"` [INFO] running `"docker" "rm" "-f" "003c636309d70e0da82a6f7836fb9b3464f09f48b81ce85d1b671d8d18d052dd"` [INFO] [stdout] 003c636309d70e0da82a6f7836fb9b3464f09f48b81ce85d1b671d8d18d052dd