[INFO] updating cached repository https://github.com/Object905/rust_srt [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] 635366837df69939fb4a1ffc144d24ff9c0da13e [INFO] testing Object905/rust_srt against beta-2019-09-28 for beta-1.39-1 [INFO] running `"git" "clone" "work/cache/git-repos/https%3A%2F%2Fgithub.com%2FObject905%2Frust_srt" "work/builds/worker-3/source"` [INFO] [stderr] Cloning into 'work/builds/worker-3/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/Object905/rust_srt 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/Object905/rust_srt [INFO] finished tweaking git repo https://github.com/Object905/rust_srt [INFO] tweaked toml for git repo https://github.com/Object905/rust_srt written to work/builds/worker-3/source/Cargo.toml [INFO] crate git repo https://github.com/Object905/rust_srt 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-3/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-3/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] 1a5c780badfead614c1ff57a9248f6db9efb3214ff2514763ff15c2c6fe7e56e [INFO] running `"docker" "start" "-a" "1a5c780badfead614c1ff57a9248f6db9efb3214ff2514763ff15c2c6fe7e56e"` [INFO] [stderr] Compiling libc v0.2.15 [INFO] [stderr] Compiling regex-syntax v0.3.4 [INFO] [stderr] Compiling memchr v0.1.11 [INFO] [stderr] Compiling thread-id v2.0.0 [INFO] [stderr] Compiling thread_local v0.2.6 [INFO] [stderr] Compiling aho-corasick v0.5.2 [INFO] [stderr] Compiling regex v0.1.73 [INFO] [stderr] Compiling srt v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/utils.rs:8:20 [INFO] [stderr] | [INFO] [stderr] 8 | let mut file = try!(File::open(&path)); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/utils.rs:10:5 [INFO] [stderr] | [INFO] [stderr] 10 | try!(file.read_to_string(&mut content)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:25:27 [INFO] [stderr] | [INFO] [stderr] 25 | let mut content = try!(utils::read_file(&path)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:32:12 [INFO] [stderr] | [INFO] [stderr] 32 | Ok(try!(Subtitles::from_str(&content))) [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:37:24 [INFO] [stderr] | [INFO] [stderr] 37 | let mut file = try!(File::create(&path)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:39:13 [INFO] [stderr] | [INFO] [stderr] 39 | try!(write!(&mut file, "{}", line)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:41:9 [INFO] [stderr] | [INFO] [stderr] 41 | try!(write!(&mut file, "\r\n\r\n")); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:298:13 [INFO] [stderr] | [INFO] [stderr] 298 | try!(write!(f, "{}", line)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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 6.48s [INFO] running `"docker" "inspect" "1a5c780badfead614c1ff57a9248f6db9efb3214ff2514763ff15c2c6fe7e56e"` [INFO] running `"docker" "rm" "-f" "1a5c780badfead614c1ff57a9248f6db9efb3214ff2514763ff15c2c6fe7e56e"` [INFO] [stdout] 1a5c780badfead614c1ff57a9248f6db9efb3214ff2514763ff15c2c6fe7e56e [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-3/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] 24083c6b7489605100ee36d0a3e4a86cb5e7b28933b98d426b71df2ee6cc6d0c [INFO] running `"docker" "start" "-a" "24083c6b7489605100ee36d0a3e4a86cb5e7b28933b98d426b71df2ee6cc6d0c"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stderr] Compiling srt v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/utils.rs:8:20 [INFO] [stderr] | [INFO] [stderr] 8 | let mut file = try!(File::open(&path)); [INFO] [stderr] | ^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(deprecated)]` on by default [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/utils.rs:10:5 [INFO] [stderr] | [INFO] [stderr] 10 | try!(file.read_to_string(&mut content)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:25:27 [INFO] [stderr] | [INFO] [stderr] 25 | let mut content = try!(utils::read_file(&path)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:32:12 [INFO] [stderr] | [INFO] [stderr] 32 | Ok(try!(Subtitles::from_str(&content))) [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:37:24 [INFO] [stderr] | [INFO] [stderr] 37 | let mut file = try!(File::create(&path)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:39:13 [INFO] [stderr] | [INFO] [stderr] 39 | try!(write!(&mut file, "{}", line)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:41:9 [INFO] [stderr] | [INFO] [stderr] 41 | try!(write!(&mut file, "\r\n\r\n")); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'try': use the `?` operator instead [INFO] [stderr] --> src/subtitles.rs:298:13 [INFO] [stderr] | [INFO] [stderr] 298 | try!(write!(f, "{}", line)); [INFO] [stderr] | ^^^ [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/utils.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / lazy_static! { [INFO] [stderr] 24 | | pub static ref SUBS: Regex = Regex::new(r"(?x) [INFO] [stderr] 25 | | (\d+) [INFO] [stderr] 26 | | \r\n [INFO] [stderr] ... | [INFO] [stderr] 35 | | static ref UNIFY_NEWLINE_STYLE: Regex = Regex::new(r"(?:\r\n|\n)").unwrap(); [INFO] [stderr] 36 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/subtitles.rs:322:5 [INFO] [stderr] | [INFO] [stderr] 322 | / lazy_static! { [INFO] [stderr] 323 | | static ref SUBS: Subtitles = Subtitles::from_file(PATH).unwrap(); [INFO] [stderr] 324 | | } [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] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/subtitles.rs:322:5 [INFO] [stderr] | [INFO] [stderr] 322 | / lazy_static! { [INFO] [stderr] 323 | | static ref SUBS: Subtitles = Subtitles::from_file(PATH).unwrap(); [INFO] [stderr] 324 | | } [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] warning: use of deprecated item 'core::str::::trim_right_matches': superseded by `trim_end_matches` [INFO] [stderr] --> src/subtitles.rs:398:35 [INFO] [stderr] | [INFO] [stderr] 398 | line.text = line.text.trim_right_matches(" lol").to_owned(); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated item: `trim_end_matches` [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 1.08s [INFO] running `"docker" "inspect" "24083c6b7489605100ee36d0a3e4a86cb5e7b28933b98d426b71df2ee6cc6d0c"` [INFO] running `"docker" "rm" "-f" "24083c6b7489605100ee36d0a3e4a86cb5e7b28933b98d426b71df2ee6cc6d0c"` [INFO] [stdout] 24083c6b7489605100ee36d0a3e4a86cb5e7b28933b98d426b71df2ee6cc6d0c [INFO] running `"docker" "create" "-v" "/big/crater/work/builds/worker-3/target:/opt/rustwide/target:rw,Z" "-v" "/big/crater/work/builds/worker-3/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] 5e2343e1e308b728aeb97f56ad2947f77d9c862d0f07be201e3d84526c48f024 [INFO] running `"docker" "start" "-a" "5e2343e1e308b728aeb97f56ad2947f77d9c862d0f07be201e3d84526c48f024"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.08s [INFO] [stderr] Running /opt/rustwide/target/debug/deps/srt-66b3afc8b2b58ff7 [INFO] [stdout] [INFO] [stdout] running 15 tests [INFO] [stdout] test subline::subline_tests::display ... ok [INFO] [stdout] test timestamp::timestamp_test::add_assign ... ok [INFO] [stdout] test timestamp::timestamp_test::add ... ok [INFO] [stdout] test timestamp::timestamp_test::ord ... ok [INFO] [stdout] test timestamp::timestamp_test::sub ... ok [INFO] [stdout] test timestamp::timestamp_test::sub_assign ... ok [INFO] [stdout] test timestamp::timestamp_test::new ... ok [INFO] [stdout] test timestamp::timestamp_test::from_microseconds ... ok [INFO] [stdout] test utils::utils_tests::_prepare ... ok [INFO] [stdout] test utils::utils_tests::_check ... ok [INFO] [stdout] test subtitles::subtitles_tests::from_file ... ok [INFO] [stdout] test subtitles::subtitles_tests::iterator ... ok [INFO] [stdout] test subtitles::subtitles_tests::insert ... ok [INFO] [stdout] test subtitles::subtitles_tests::from_str ... ok [INFO] [stdout] test subtitles::subtitles_tests::to_string ... ok [INFO] [stderr] Doc-tests srt [INFO] [stdout] [INFO] [stdout] test result: ok. 15 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 3 tests [INFO] [stdout] test src/timestamp.rs - timestamp::Timestamp::from (line 90) ... ok [INFO] [stdout] test src/timestamp.rs - timestamp::Timestamp::from_microseconds (line 62) ... ok [INFO] [stdout] test src/timestamp.rs - timestamp::Timestamp::new (line 20) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 3 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] running `"docker" "inspect" "5e2343e1e308b728aeb97f56ad2947f77d9c862d0f07be201e3d84526c48f024"` [INFO] running `"docker" "rm" "-f" "5e2343e1e308b728aeb97f56ad2947f77d9c862d0f07be201e3d84526c48f024"` [INFO] [stdout] 5e2343e1e308b728aeb97f56ad2947f77d9c862d0f07be201e3d84526c48f024