[INFO] crate vobsub 0.2.3 is already in cache [INFO] extracting crate vobsub 0.2.3 into work/ex/beta-1.38-1/sources/1.37.0/reg/vobsub/0.2.3 [INFO] extracting crate vobsub 0.2.3 into work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/vobsub/0.2.3 [INFO] validating manifest of vobsub-0.2.3 on toolchain 1.37.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of vobsub-0.2.3 on toolchain beta-2019-08-13 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing vobsub-0.2.3 [INFO] finished frobbing vobsub-0.2.3 [INFO] frobbed toml for vobsub-0.2.3 written to work/ex/beta-1.38-1/sources/1.37.0/reg/vobsub/0.2.3/Cargo.toml [INFO] started frobbing vobsub-0.2.3 [INFO] finished frobbing vobsub-0.2.3 [INFO] frobbed toml for vobsub-0.2.3 written to work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/vobsub/0.2.3/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.37.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-08-13" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing vobsub-0.2.3 against beta-2019-08-13 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-6/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/vobsub/0.2.3:/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-08-13" "build" "--frozen"` [INFO] [stdout] 9d63658ef38961b5e8f9c65d10a94625be63a4c739b5dd6351981df4ad4c1ef9 [INFO] running `"docker" "start" "-a" "9d63658ef38961b5e8f9c65d10a94625be63a4c739b5dd6351981df4ad4c1ef9"` [INFO] [stderr] Compiling nom v2.1.0 [INFO] [stderr] Compiling error-chain v0.10.0 [INFO] [stderr] Compiling image v0.13.0 [INFO] [stderr] Compiling vobsub v0.2.3 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/idx.rs:14:1 [INFO] [stderr] | [INFO] [stderr] 14 | /// Parse a single hexadecimal digit. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 15 | / named!(hex_digit, [INFO] [stderr] 16 | | map!(one_of!(b"0123456789abcdefABCDEF"), |c: char| -> u8 { [INFO] [stderr] 17 | | cast::u8(c.to_digit(16).unwrap()).unwrap() [INFO] [stderr] 18 | | }) [INFO] [stderr] 19 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_doc_comments)]` on by default [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/idx.rs:21:1 [INFO] [stderr] | [INFO] [stderr] 21 | /// Parse a single byte hexadecimal byte. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 22 | / named!(hex_u8, [INFO] [stderr] 23 | | do_parse!( [INFO] [stderr] 24 | | h1: call!(hex_digit) >> [INFO] [stderr] 25 | | h2: call!(hex_digit) >> [INFO] [stderr] 26 | | (h1 << 4 | h2) [INFO] [stderr] 27 | | ) [INFO] [stderr] 28 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/idx.rs:30:1 [INFO] [stderr] | [INFO] [stderr] 30 | /// Parse a 3-byte hexadecimal RGB color. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 31 | / named!(rgb>, [INFO] [stderr] 32 | | map!(count_fixed!(u8, call!(hex_u8), 3), |rgb| { Rgb { data: rgb } }) [INFO] [stderr] 33 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/img.rs:29:1 [INFO] [stderr] | [INFO] [stderr] 29 | /// Parse the count for a `Rle`. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 30 | / named!(count<(&[u8], usize), u16>, [INFO] [stderr] 31 | | alt!( [INFO] [stderr] 32 | | // Fill to end of line. [INFO] [stderr] 33 | | value!(0, tag_bits!(u16, 14, 0)) | [INFO] [stderr] ... | [INFO] [stderr] 42 | | ) [INFO] [stderr] 43 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/img.rs:45:1 [INFO] [stderr] | [INFO] [stderr] 45 | /// Parse an `Rle`. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 46 | / named!(rle<(&[u8], usize), Rle>, [INFO] [stderr] 47 | | do_parse!( [INFO] [stderr] 48 | | cnt: call!(count) >> [INFO] [stderr] 49 | | val: take_bits!(u8, 2) >> [INFO] [stderr] 50 | | (Rle { cnt: cnt, val: val }) [INFO] [stderr] 51 | | ) [INFO] [stderr] 52 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/clock.rs:44:1 [INFO] [stderr] | [INFO] [stderr] 44 | /// Parse a 33-bit `Clock` value with 3 marker bits, consuming 36 bits. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 45 | / named!(pub clock<(&[u8], usize), Clock>, [INFO] [stderr] 46 | | do_parse!( [INFO] [stderr] 47 | | // Bits 32..30. [INFO] [stderr] 48 | | hi: take_bits!(u64, 3) >> [INFO] [stderr] ... | [INFO] [stderr] 60 | | ) [INFO] [stderr] 61 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/clock.rs:63:1 [INFO] [stderr] | [INFO] [stderr] 63 | / /// Parse a 33-bit `Clock` value plus a 9-bit extension and 4 marker bits, [INFO] [stderr] 64 | | /// consuming 46 bits. [INFO] [stderr] | |______________________^ [INFO] [stderr] 65 | / named!(pub clock_and_ext<(&[u8], usize), Clock>, [INFO] [stderr] 66 | | do_parse!( [INFO] [stderr] 67 | | clock: call!(clock) >> [INFO] [stderr] 68 | | ext: take_bits!(u16, 9) >> [INFO] [stderr] ... | [INFO] [stderr] 72 | | ) [INFO] [stderr] 73 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:34:1 [INFO] [stderr] | [INFO] [stderr] 34 | /// Parse PTS & DTS flags in a PES packet header. Consumes two bits. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 35 | / named!(pts_dts_flags<(&[u8], usize), PtsDtsFlags>, [INFO] [stderr] 36 | | alt!(value!(PtsDtsFlags::None, tag_bits!(u8, 2, 0b00)) | [INFO] [stderr] 37 | | value!(PtsDtsFlags::Pts, tag_bits!(u8, 2, 0b10)) | [INFO] [stderr] 38 | | value!(PtsDtsFlags::PtsDts, tag_bits!(u8, 2, 0b11))) [INFO] [stderr] 39 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:60:1 [INFO] [stderr] | [INFO] [stderr] 60 | /// Helper for `pts_dts`. Parses the PTS-only case. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 61 | / named!(pts_only, [INFO] [stderr] 62 | | bits!( [INFO] [stderr] 63 | | do_parse!( [INFO] [stderr] 64 | | tag_bits!(u8, 4, 0b0010) >> [INFO] [stderr] ... | [INFO] [stderr] 68 | | ) [INFO] [stderr] 69 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:71:1 [INFO] [stderr] | [INFO] [stderr] 71 | /// Helper for `pts_dts`. Parses the PTS and DTS case. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 72 | / named!(pts_and_dts, [INFO] [stderr] 73 | | bits!( [INFO] [stderr] 74 | | do_parse!( [INFO] [stderr] 75 | | tag_bits!(u8, 4, 0b0011) >> [INFO] [stderr] ... | [INFO] [stderr] 81 | | ) [INFO] [stderr] 82 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:117:1 [INFO] [stderr] | [INFO] [stderr] 117 | /// Deserialize a single Boolean flag bit. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 118 | / named!(bool_flag<(&[u8], usize), bool>, [INFO] [stderr] 119 | | map!(take_bits!(u8, 1), |b| b == 1) [INFO] [stderr] 120 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:181:1 [INFO] [stderr] | [INFO] [stderr] 181 | /// Parse PES header data, including the predecing flags and length bytes. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 182 | / named!(header_data, [INFO] [stderr] 183 | | do_parse!( [INFO] [stderr] 184 | | // Grab the flags from our flag byte. [INFO] [stderr] 185 | | flags: call!(header_data_flags) >> [INFO] [stderr] ... | [INFO] [stderr] 192 | | ) [INFO] [stderr] 193 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:227:1 [INFO] [stderr] | [INFO] [stderr] 227 | /// Parse the first PES header byte after the length. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 228 | / named!(header
, [INFO] [stderr] 229 | | bits!( [INFO] [stderr] 230 | | do_parse!( [INFO] [stderr] 231 | | tag_bits!(u8, 2, 0b10) >> [INFO] [stderr] ... | [INFO] [stderr] 245 | | ) [INFO] [stderr] 246 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/ps.rs:29:1 [INFO] [stderr] | [INFO] [stderr] 29 | /// Parse a Program Stream header. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 30 | / named!(pub header
, [INFO] [stderr] 31 | | do_parse!( [INFO] [stderr] 32 | | // Sync bytes. [INFO] [stderr] 33 | | tag!(&[0x00, 0x00, 0x01, 0xba]) >> [INFO] [stderr] ... | [INFO] [stderr] 60 | | ) [INFO] [stderr] 61 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/ps.rs:73:1 [INFO] [stderr] | [INFO] [stderr] 73 | /// Parse a Program Stream packet and the following PES packet. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 74 | / named!(pub pes_packet, [INFO] [stderr] 75 | | do_parse!( [INFO] [stderr] 76 | | ps_header: call!(header) >> [INFO] [stderr] 77 | | pes_packet: call!(pes::packet) >> [INFO] [stderr] ... | [INFO] [stderr] 82 | | ) [INFO] [stderr] 83 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:27:1 [INFO] [stderr] | [INFO] [stderr] 27 | /// Parse four 4-bit palette entries. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 28 | named!(palette_entries<[u8; 4]>, bits!(count_fixed!(u8, take_bits!(u8, 4), 4))); [INFO] [stderr] | -------------------------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:75:1 [INFO] [stderr] | [INFO] [stderr] 75 | /// Parse a 12-bit coordinate value. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 76 | named!(coordinate<(&[u8], usize), u16>, take_bits!(u16, 12)); [INFO] [stderr] | ------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:78:1 [INFO] [stderr] | [INFO] [stderr] 78 | / /// Parse four 12-bit coordinate values as a rectangle (with right and [INFO] [stderr] 79 | | /// bottom coordinates inclusive). [INFO] [stderr] | |__________________________________^ [INFO] [stderr] 80 | / named!(coordinates, [INFO] [stderr] 81 | | bits!( [INFO] [stderr] 82 | | do_parse!( [INFO] [stderr] 83 | | x1: call!(coordinate) >> [INFO] [stderr] ... | [INFO] [stderr] 94 | | ) [INFO] [stderr] 95 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:97:1 [INFO] [stderr] | [INFO] [stderr] 97 | /// Parse a pair of 16-bit RLE offsets. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 98 | named!(rle_offsets<[u16; 2]>, bits!(count_fixed!(u16, take_bits!(u16, 16), 2))); [INFO] [stderr] | -------------------------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:126:1 [INFO] [stderr] | [INFO] [stderr] 126 | /// Parse a single command in a control sequence. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 127 | / named!(control_command, [INFO] [stderr] 128 | | alt!( [INFO] [stderr] 129 | | value!(ControlCommand::Force, tag!(&[0x00])) | [INFO] [stderr] 130 | | value!(ControlCommand::StartDate, tag!(&[0x01])) | [INFO] [stderr] ... | [INFO] [stderr] 145 | | ) [INFO] [stderr] 146 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:148:1 [INFO] [stderr] | [INFO] [stderr] 148 | /// The end of a control sequence. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 149 | named!(control_command_end, tag!(&[0xff])); [INFO] [stderr] | ------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:166:1 [INFO] [stderr] | [INFO] [stderr] 166 | /// Parse a single control sequence. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 167 | / named!(control_sequence, [INFO] [stderr] 168 | | do_parse!( [INFO] [stderr] 169 | | date: call!(be_u16) >> [INFO] [stderr] 170 | | next: call!(be_u16) >> [INFO] [stderr] ... | [INFO] [stderr] 178 | | ) [INFO] [stderr] 179 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/idx.rs:102:9 [INFO] [stderr] | [INFO] [stderr] 102 | / lazy_static! { [INFO] [stderr] 103 | | static ref KEY_VALUE: Regex = [INFO] [stderr] 104 | | Regex::new("^([A-Za-z/ ]+): (.*)").unwrap(); [INFO] [stderr] 105 | | } [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/errors.rs:12:1 [INFO] [stderr] | [INFO] [stderr] 12 | / error_chain! { [INFO] [stderr] 13 | | foreign_links { [INFO] [stderr] 14 | | Io(io::Error); [INFO] [stderr] 15 | | } [INFO] [stderr] ... | [INFO] [stderr] 47 | | } [INFO] [stderr] 48 | | } [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 7.45s [INFO] running `"docker" "inspect" "9d63658ef38961b5e8f9c65d10a94625be63a4c739b5dd6351981df4ad4c1ef9"` [INFO] running `"docker" "rm" "-f" "9d63658ef38961b5e8f9c65d10a94625be63a4c739b5dd6351981df4ad4c1ef9"` [INFO] [stdout] 9d63658ef38961b5e8f9c65d10a94625be63a4c739b5dd6351981df4ad4c1ef9 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-6/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/vobsub/0.2.3:/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-08-13" "test" "--frozen" "--no-run"` [INFO] [stdout] 7b9c71dfcb8bca4daf76621424e45b64e3e4d0e6986f1a4b7eef93ac9256c3f7 [INFO] running `"docker" "start" "-a" "7b9c71dfcb8bca4daf76621424e45b64e3e4d0e6986f1a4b7eef93ac9256c3f7"` [INFO] [stderr] Compiling vobsub v0.2.3 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/idx.rs:14:1 [INFO] [stderr] | [INFO] [stderr] 14 | /// Parse a single hexadecimal digit. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 15 | / named!(hex_digit, [INFO] [stderr] 16 | | map!(one_of!(b"0123456789abcdefABCDEF"), |c: char| -> u8 { [INFO] [stderr] 17 | | cast::u8(c.to_digit(16).unwrap()).unwrap() [INFO] [stderr] 18 | | }) [INFO] [stderr] 19 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_doc_comments)]` on by default [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/idx.rs:21:1 [INFO] [stderr] | [INFO] [stderr] 21 | /// Parse a single byte hexadecimal byte. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 22 | / named!(hex_u8, [INFO] [stderr] 23 | | do_parse!( [INFO] [stderr] 24 | | h1: call!(hex_digit) >> [INFO] [stderr] 25 | | h2: call!(hex_digit) >> [INFO] [stderr] 26 | | (h1 << 4 | h2) [INFO] [stderr] 27 | | ) [INFO] [stderr] 28 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/idx.rs:30:1 [INFO] [stderr] | [INFO] [stderr] 30 | /// Parse a 3-byte hexadecimal RGB color. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 31 | / named!(rgb>, [INFO] [stderr] 32 | | map!(count_fixed!(u8, call!(hex_u8), 3), |rgb| { Rgb { data: rgb } }) [INFO] [stderr] 33 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/img.rs:29:1 [INFO] [stderr] | [INFO] [stderr] 29 | /// Parse the count for a `Rle`. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 30 | / named!(count<(&[u8], usize), u16>, [INFO] [stderr] 31 | | alt!( [INFO] [stderr] 32 | | // Fill to end of line. [INFO] [stderr] 33 | | value!(0, tag_bits!(u16, 14, 0)) | [INFO] [stderr] ... | [INFO] [stderr] 42 | | ) [INFO] [stderr] 43 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/img.rs:45:1 [INFO] [stderr] | [INFO] [stderr] 45 | /// Parse an `Rle`. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 46 | / named!(rle<(&[u8], usize), Rle>, [INFO] [stderr] 47 | | do_parse!( [INFO] [stderr] 48 | | cnt: call!(count) >> [INFO] [stderr] 49 | | val: take_bits!(u8, 2) >> [INFO] [stderr] 50 | | (Rle { cnt: cnt, val: val }) [INFO] [stderr] 51 | | ) [INFO] [stderr] 52 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/clock.rs:44:1 [INFO] [stderr] | [INFO] [stderr] 44 | /// Parse a 33-bit `Clock` value with 3 marker bits, consuming 36 bits. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 45 | / named!(pub clock<(&[u8], usize), Clock>, [INFO] [stderr] 46 | | do_parse!( [INFO] [stderr] 47 | | // Bits 32..30. [INFO] [stderr] 48 | | hi: take_bits!(u64, 3) >> [INFO] [stderr] ... | [INFO] [stderr] 60 | | ) [INFO] [stderr] 61 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/clock.rs:63:1 [INFO] [stderr] | [INFO] [stderr] 63 | / /// Parse a 33-bit `Clock` value plus a 9-bit extension and 4 marker bits, [INFO] [stderr] 64 | | /// consuming 46 bits. [INFO] [stderr] | |______________________^ [INFO] [stderr] 65 | / named!(pub clock_and_ext<(&[u8], usize), Clock>, [INFO] [stderr] 66 | | do_parse!( [INFO] [stderr] 67 | | clock: call!(clock) >> [INFO] [stderr] 68 | | ext: take_bits!(u16, 9) >> [INFO] [stderr] ... | [INFO] [stderr] 72 | | ) [INFO] [stderr] 73 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:34:1 [INFO] [stderr] | [INFO] [stderr] 34 | /// Parse PTS & DTS flags in a PES packet header. Consumes two bits. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 35 | / named!(pts_dts_flags<(&[u8], usize), PtsDtsFlags>, [INFO] [stderr] 36 | | alt!(value!(PtsDtsFlags::None, tag_bits!(u8, 2, 0b00)) | [INFO] [stderr] 37 | | value!(PtsDtsFlags::Pts, tag_bits!(u8, 2, 0b10)) | [INFO] [stderr] 38 | | value!(PtsDtsFlags::PtsDts, tag_bits!(u8, 2, 0b11))) [INFO] [stderr] 39 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:60:1 [INFO] [stderr] | [INFO] [stderr] 60 | /// Helper for `pts_dts`. Parses the PTS-only case. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 61 | / named!(pts_only, [INFO] [stderr] 62 | | bits!( [INFO] [stderr] 63 | | do_parse!( [INFO] [stderr] 64 | | tag_bits!(u8, 4, 0b0010) >> [INFO] [stderr] ... | [INFO] [stderr] 68 | | ) [INFO] [stderr] 69 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:71:1 [INFO] [stderr] | [INFO] [stderr] 71 | /// Helper for `pts_dts`. Parses the PTS and DTS case. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 72 | / named!(pts_and_dts, [INFO] [stderr] 73 | | bits!( [INFO] [stderr] 74 | | do_parse!( [INFO] [stderr] 75 | | tag_bits!(u8, 4, 0b0011) >> [INFO] [stderr] ... | [INFO] [stderr] 81 | | ) [INFO] [stderr] 82 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:117:1 [INFO] [stderr] | [INFO] [stderr] 117 | /// Deserialize a single Boolean flag bit. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 118 | / named!(bool_flag<(&[u8], usize), bool>, [INFO] [stderr] 119 | | map!(take_bits!(u8, 1), |b| b == 1) [INFO] [stderr] 120 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:181:1 [INFO] [stderr] | [INFO] [stderr] 181 | /// Parse PES header data, including the predecing flags and length bytes. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 182 | / named!(header_data, [INFO] [stderr] 183 | | do_parse!( [INFO] [stderr] 184 | | // Grab the flags from our flag byte. [INFO] [stderr] 185 | | flags: call!(header_data_flags) >> [INFO] [stderr] ... | [INFO] [stderr] 192 | | ) [INFO] [stderr] 193 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/pes.rs:227:1 [INFO] [stderr] | [INFO] [stderr] 227 | /// Parse the first PES header byte after the length. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 228 | / named!(header
, [INFO] [stderr] 229 | | bits!( [INFO] [stderr] 230 | | do_parse!( [INFO] [stderr] 231 | | tag_bits!(u8, 2, 0b10) >> [INFO] [stderr] ... | [INFO] [stderr] 245 | | ) [INFO] [stderr] 246 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/ps.rs:29:1 [INFO] [stderr] | [INFO] [stderr] 29 | /// Parse a Program Stream header. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 30 | / named!(pub header
, [INFO] [stderr] 31 | | do_parse!( [INFO] [stderr] 32 | | // Sync bytes. [INFO] [stderr] 33 | | tag!(&[0x00, 0x00, 0x01, 0xba]) >> [INFO] [stderr] ... | [INFO] [stderr] 60 | | ) [INFO] [stderr] 61 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/mpeg2/ps.rs:73:1 [INFO] [stderr] | [INFO] [stderr] 73 | /// Parse a Program Stream packet and the following PES packet. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 74 | / named!(pub pes_packet, [INFO] [stderr] 75 | | do_parse!( [INFO] [stderr] 76 | | ps_header: call!(header) >> [INFO] [stderr] 77 | | pes_packet: call!(pes::packet) >> [INFO] [stderr] ... | [INFO] [stderr] 82 | | ) [INFO] [stderr] 83 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:27:1 [INFO] [stderr] | [INFO] [stderr] 27 | /// Parse four 4-bit palette entries. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 28 | named!(palette_entries<[u8; 4]>, bits!(count_fixed!(u8, take_bits!(u8, 4), 4))); [INFO] [stderr] | -------------------------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:75:1 [INFO] [stderr] | [INFO] [stderr] 75 | /// Parse a 12-bit coordinate value. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 76 | named!(coordinate<(&[u8], usize), u16>, take_bits!(u16, 12)); [INFO] [stderr] | ------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:78:1 [INFO] [stderr] | [INFO] [stderr] 78 | / /// Parse four 12-bit coordinate values as a rectangle (with right and [INFO] [stderr] 79 | | /// bottom coordinates inclusive). [INFO] [stderr] | |__________________________________^ [INFO] [stderr] 80 | / named!(coordinates, [INFO] [stderr] 81 | | bits!( [INFO] [stderr] 82 | | do_parse!( [INFO] [stderr] 83 | | x1: call!(coordinate) >> [INFO] [stderr] ... | [INFO] [stderr] 94 | | ) [INFO] [stderr] 95 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:97:1 [INFO] [stderr] | [INFO] [stderr] 97 | /// Parse a pair of 16-bit RLE offsets. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 98 | named!(rle_offsets<[u16; 2]>, bits!(count_fixed!(u16, take_bits!(u16, 16), 2))); [INFO] [stderr] | -------------------------------------------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:126:1 [INFO] [stderr] | [INFO] [stderr] 126 | /// Parse a single command in a control sequence. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 127 | / named!(control_command, [INFO] [stderr] 128 | | alt!( [INFO] [stderr] 129 | | value!(ControlCommand::Force, tag!(&[0x00])) | [INFO] [stderr] 130 | | value!(ControlCommand::StartDate, tag!(&[0x01])) | [INFO] [stderr] ... | [INFO] [stderr] 145 | | ) [INFO] [stderr] 146 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:148:1 [INFO] [stderr] | [INFO] [stderr] 148 | /// The end of a control sequence. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 149 | named!(control_command_end, tag!(&[0xff])); [INFO] [stderr] | ------------------------------------------- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/sub.rs:166:1 [INFO] [stderr] | [INFO] [stderr] 166 | /// Parse a single control sequence. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 167 | / named!(control_sequence, [INFO] [stderr] 168 | | do_parse!( [INFO] [stderr] 169 | | date: call!(be_u16) >> [INFO] [stderr] 170 | | next: call!(be_u16) >> [INFO] [stderr] ... | [INFO] [stderr] 178 | | ) [INFO] [stderr] 179 | | ); [INFO] [stderr] | |__- rustdoc does not generate documentation for macro expansions [INFO] [stderr] | [INFO] [stderr] = help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion [INFO] [stderr] [INFO] [stderr] warning: use of deprecated item 'std::sync::ONCE_INIT': the `new` function is now preferred [INFO] [stderr] --> src/idx.rs:102:9 [INFO] [stderr] | [INFO] [stderr] 102 | / lazy_static! { [INFO] [stderr] 103 | | static ref KEY_VALUE: Regex = [INFO] [stderr] 104 | | Regex::new("^([A-Za-z/ ]+): (.*)").unwrap(); [INFO] [stderr] 105 | | } [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/errors.rs:12:1 [INFO] [stderr] | [INFO] [stderr] 12 | / error_chain! { [INFO] [stderr] 13 | | foreign_links { [INFO] [stderr] 14 | | Io(io::Error); [INFO] [stderr] 15 | | } [INFO] [stderr] ... | [INFO] [stderr] 47 | | } [INFO] [stderr] 48 | | } [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 5.00s [INFO] running `"docker" "inspect" "7b9c71dfcb8bca4daf76621424e45b64e3e4d0e6986f1a4b7eef93ac9256c3f7"` [INFO] running `"docker" "rm" "-f" "7b9c71dfcb8bca4daf76621424e45b64e3e4d0e6986f1a4b7eef93ac9256c3f7"` [INFO] [stdout] 7b9c71dfcb8bca4daf76621424e45b64e3e4d0e6986f1a4b7eef93ac9256c3f7 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-6/beta-2019-08-13:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/beta-2019-08-13/reg/vobsub/0.2.3:/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-08-13" "test" "--frozen"` [INFO] [stdout] fa90d8cfae2ea16dc8e262d425f4754f14a4ccd431d4810542d03e605ed9bb08 [INFO] running `"docker" "start" "-a" "fa90d8cfae2ea16dc8e262d425f4754f14a4ccd431d4810542d03e605ed9bb08"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.07s [INFO] [stderr] Running /opt/crater/target/debug/deps/vobsub-2b7f7c5b744b5836 [INFO] [stdout] [INFO] [stdout] running 16 tests [INFO] [stdout] test idx::parse_palette ... ok [INFO] [stdout] test idx::parse_rgb ... ok [INFO] [stdout] test mpeg2::pes::parse_header_data_flags ... ok [INFO] [stdout] test mpeg2::clock::parse_clock ... ok [INFO] [stdout] test mpeg2::pes::parse_header_data ... ok [INFO] [stdout] test mpeg2::pes::parse_packet ... ok [INFO] [stdout] test mpeg2::pes::parse_pts_dts ... ok [INFO] [stdout] test mpeg2::pes::parse_pts_dts_flags ... ok [INFO] [stdout] test sub::parse_palette_entries ... ok [INFO] [stdout] test sub::parse_control_sequence ... ok [INFO] [stdout] test sub::parse_subtitles ... FAILED [INFO] [stdout] test idx::parse_index ... FAILED [INFO] [stdout] test probe::probe_sub_files ... FAILED [INFO] [stdout] test sub::parse_subtitles_from_subtitle_edit ... FAILED [INFO] [stdout] test sub::parse_fuzz_corpus_seeds ... FAILED [INFO] [stderr] error: test failed, to rerun pass '--lib' [INFO] [stdout] test probe::probe_idx_files ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- sub::parse_subtitles stdout ---- [INFO] [stdout] thread 'sub::parse_subtitles' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 2, kind: NotFound, message: "No such file or directory" }', src/libcore/result.rs:1084:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x563484c040fb - backtrace::backtrace::libunwind::trace::h23ae608c8b906c69 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x563484c040fb - backtrace::backtrace::trace_unsynchronized::h65b3ea295a85fd48 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x563484c040fb - std::sys_common::backtrace::_print::h24f527b44b6cfc06 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x563484c040fb - std::sys_common::backtrace::print::h712608e4347fd64a [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x563484c040fb - std::panicking::default_hook::{{closure}}::h6c3d570c2b500048 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x563484c03d6c - std::panicking::default_hook::hb29963fb4747e0dd [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x563484c0486d - std::panicking::rust_panic_with_hook::hd1236c3083de823a [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x563484c043f2 - std::panicking::continue_panic_fmt::he38ad41d6304a12c [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x563484c042d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x563484c1df6d - core::panicking::panic_fmt::h1bc6de43c92ad80c [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x563484c1e067 - core::result::unwrap_failed::hd83f272814becce6 [INFO] [stdout] at src/libcore/result.rs:1084 [INFO] [stdout] 11: 0x56348497fd60 - core::result::Result::unwrap::hff9e013bb26025c7 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:852 [INFO] [stdout] 12: 0x56348497d8a1 - vobsub::sub::parse_subtitles::h652624cea5b7ffab [INFO] [stdout] at src/sub.rs:651 [INFO] [stdout] 13: 0x56348497d84a - vobsub::sub::parse_subtitles::{{closure}}::h6c1a62ef5295a5fc [INFO] [stdout] at src/sub.rs:644 [INFO] [stdout] 14: 0x5634849af5ce - core::ops::function::FnOnce::call_once::hc535e776de97465a [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 15: 0x5634849bc7bf - as core::ops::function::FnOnce>::call_once::h355e655b04400826 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 16: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: 0x5634849d6dae - std::panicking::try::h5890cbed5d1d8df0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x5634849d6dae - std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x5634849d6dae - test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 20: 0x5634849b21e5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x5634849b63f5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x5634849b63f5 - as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x5634849b63f5 - std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 25: 0x5634849b69f2 - std::panicking::try::h332f368ed7d9b7d1 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x5634849b69f2 - std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x5634849b69f2 - std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x5634849b69f2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 29: 0x563484bf980f - as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 30: 0x563484c068e0 - as core::ops::function::FnOnce>::call_once::h92593001847bb63e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 31: 0x563484c068e0 - std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x563484c068e0 - std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7fd0a928a4a4 - start_thread [INFO] [stdout] 34: 0x7fd0a988cd0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- idx::parse_index stdout ---- [INFO] [stdout] thread 'idx::parse_index' panicked at 'called `Result::unwrap()` on an `Err` value: Error(Msg("Could not parse ../fixtures/example.idx"), State { next_error: Some(Os { code: 2, kind: NotFound, message: "No such file or directory" }), backtrace: Some(stack backtrace: [INFO] [stdout] 0: error_chain::make_backtrace::h12bac7a403e3c186 (0x563484bbd214) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:417 [INFO] [stdout] 1: core::ops::function::FnOnce::call_once::h9d2db975bc0a89b5 (0x5634849af5aa) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 2: core::option::Option::or_else::h4015fc5f2cc00ae0 (0x5634849adb69) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/option.rs:751 [INFO] [stdout] 3: error_chain::State::new::h965e62936a999344 (0x5634849a81fa) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:518 [INFO] [stdout] 4: as vobsub::errors::ResultExt>::chain_err::{{closure}}::h2162860d2a4e3bd4 (0x5634849840d6) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:195 [INFO] [stdout] 5: core::result::Result::map_err::h7acc70ed5281557f (0x5634849808b1) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:574 [INFO] [stdout] 6: as vobsub::errors::ResultExt>::chain_err::hed5cab5726c50e0c (0x5634849817b4) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:192 [INFO] [stdout] 7: vobsub::idx::Index::open::hd4832525c8512e82 (0x5634849a3b07) [INFO] [stdout] at src/idx.rs:117 [INFO] [stdout] 8: vobsub::idx::parse_index::h9b5ede2c789105f9 (0x5634849a7dca) [INFO] [stdout] at src/idx.rs:163 [INFO] [stdout] 9: vobsub::idx::parse_index::{{closure}}::h6c6823ec621969c9 (0x5634849a7d7a) [INFO] [stdout] at src/idx.rs:159 [INFO] [stdout] 10: core::ops::function::FnOnce::call_once::h48b041947d12ba8f (0x5634849af40e) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 11: as core::ops::function::FnOnce>::call_once::h355e655b04400826 (0x5634849bc7bf) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 12: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 13: std::panicking::try::h5890cbed5d1d8df0 (0x5634849d6dae) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 14: std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 (0x5634849b21e5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 15: std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 (0x5634849b63f5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 16: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: std::panicking::try::h332f368ed7d9b7d1 (0x5634849b69f2) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 18: as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 (0x563484bf980f) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 19: as core::ops::function::FnOnce>::call_once::h92593001847bb63e (0x563484c068e0) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 20: start_thread (0x7fd0a928a4a4) [INFO] [stdout] 21: __clone (0x7fd0a988cd0f) [INFO] [stdout] 22: (0x0)) })', src/libcore/result.rs:1084:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x563484c040fb - backtrace::backtrace::libunwind::trace::h23ae608c8b906c69 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x563484c040fb - backtrace::backtrace::trace_unsynchronized::h65b3ea295a85fd48 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x563484c040fb - std::sys_common::backtrace::_print::h24f527b44b6cfc06 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x563484c040fb - std::sys_common::backtrace::print::h712608e4347fd64a [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x563484c040fb - std::panicking::default_hook::{{closure}}::h6c3d570c2b500048 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x563484c03d6c - std::panicking::default_hook::hb29963fb4747e0dd [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x563484c0486d - std::panicking::rust_panic_with_hook::hd1236c3083de823a [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x563484c043f2 - std::panicking::continue_panic_fmt::he38ad41d6304a12c [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x563484c042d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x563484c1df6d - core::panicking::panic_fmt::h1bc6de43c92ad80c [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x563484c1e067 - core::result::unwrap_failed::hd83f272814becce6 [INFO] [stdout] at src/libcore/result.rs:1084 [INFO] [stdout] 11: 0x56348497fc68 - core::result::Result::unwrap::hfe3e5a1d704798fd [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:852 [INFO] [stdout] 12: 0x5634849a7ddf - vobsub::idx::parse_index::h9b5ede2c789105f9 [INFO] [stdout] at src/idx.rs:163 [INFO] [stdout] 13: 0x5634849a7d7a - vobsub::idx::parse_index::{{closure}}::h6c6823ec621969c9 [INFO] [stdout] at src/idx.rs:159 [INFO] [stdout] 14: 0x5634849af40e - core::ops::function::FnOnce::call_once::h48b041947d12ba8f [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 15: 0x5634849bc7bf - as core::ops::function::FnOnce>::call_once::h355e655b04400826 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 16: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: 0x5634849d6dae - std::panicking::try::h5890cbed5d1d8df0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x5634849d6dae - std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x5634849d6dae - test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 20: 0x5634849b21e5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x5634849b63f5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x5634849b63f5 - as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x5634849b63f5 - std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 25: 0x5634849b69f2 - std::panicking::try::h332f368ed7d9b7d1 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x5634849b69f2 - std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x5634849b69f2 - std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x5634849b69f2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 29: 0x563484bf980f - as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 30: 0x563484c068e0 - as core::ops::function::FnOnce>::call_once::h92593001847bb63e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 31: 0x563484c068e0 - std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x563484c068e0 - std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7fd0a928a4a4 - start_thread [INFO] [stdout] 34: 0x7fd0a988cd0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- probe::probe_sub_files stdout ---- [INFO] [stdout] thread 'probe::probe_sub_files' panicked at 'called `Result::unwrap()` on an `Err` value: Error(ReadFile("../fixtures/tiny.sub"), State { next_error: Some(Os { code: 2, kind: NotFound, message: "No such file or directory" }), backtrace: Some(stack backtrace: [INFO] [stdout] 0: error_chain::make_backtrace::h12bac7a403e3c186 (0x563484bbd214) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:417 [INFO] [stdout] 1: core::ops::function::FnOnce::call_once::h9d2db975bc0a89b5 (0x5634849af5aa) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 2: core::option::Option::or_else::h4015fc5f2cc00ae0 (0x5634849adb69) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/option.rs:751 [INFO] [stdout] 3: error_chain::State::new::h965e62936a999344 (0x5634849a81fa) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:518 [INFO] [stdout] 4: as vobsub::errors::ResultExt>::chain_err::{{closure}}::hcc5856aa1244d386 (0x5634849843d6) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:195 [INFO] [stdout] 5: core::result::Result::map_err::h5d4a6586f358829a (0x563484980481) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:574 [INFO] [stdout] 6: as vobsub::errors::ResultExt>::chain_err::h08d72a218c3dface (0x563484981654) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:192 [INFO] [stdout] 7: vobsub::probe::has_magic::he23046ffed156de6 (0x5634849aa3c8) [INFO] [stdout] at src/probe.rs:13 [INFO] [stdout] 8: vobsub::probe::is_sub_file::hb999fb4689a802f6 (0x5634849aa9b1) [INFO] [stdout] at src/probe.rs:36 [INFO] [stdout] 9: vobsub::probe::probe_sub_files::h015faf559cd9405e (0x5634849aae70) [INFO] [stdout] at src/probe.rs:42 [INFO] [stdout] 10: vobsub::probe::probe_sub_files::{{closure}}::hbf18bc6b95a04b74 (0x5634849aae3a) [INFO] [stdout] at src/probe.rs:41 [INFO] [stdout] 11: core::ops::function::FnOnce::call_once::hf38f8acdbb6ce321 (0x5634849af74e) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 12: as core::ops::function::FnOnce>::call_once::h355e655b04400826 (0x5634849bc7bf) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 13: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 14: std::panicking::try::h5890cbed5d1d8df0 (0x5634849d6dae) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 15: std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 (0x5634849b21e5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 16: std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 (0x5634849b63f5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 17: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 18: std::panicking::try::h332f368ed7d9b7d1 (0x5634849b69f2) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 19: as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 (0x563484bf980f) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 20: as core::ops::function::FnOnce>::call_once::h92593001847bb63e (0x563484c068e0) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 21: start_thread (0x7fd0a928a4a4) [INFO] [stdout] 22: __clone (0x7fd0a988cd0f) [INFO] [stdout] 23: (0x0)) })', src/libcore/result.rs:1084:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x563484c040fb - backtrace::backtrace::libunwind::trace::h23ae608c8b906c69 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x563484c040fb - backtrace::backtrace::trace_unsynchronized::h65b3ea295a85fd48 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x563484c040fb - std::sys_common::backtrace::_print::h24f527b44b6cfc06 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x563484c040fb - std::sys_common::backtrace::print::h712608e4347fd64a [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x563484c040fb - std::panicking::default_hook::{{closure}}::h6c3d570c2b500048 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x563484c03d6c - std::panicking::default_hook::hb29963fb4747e0dd [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x563484c0486d - std::panicking::rust_panic_with_hook::hd1236c3083de823a [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x563484c043f2 - std::panicking::continue_panic_fmt::he38ad41d6304a12c [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x563484c042d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x563484c1df6d - core::panicking::panic_fmt::h1bc6de43c92ad80c [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x563484c1e067 - core::result::unwrap_failed::hd83f272814becce6 [INFO] [stdout] at src/libcore/result.rs:1084 [INFO] [stdout] 11: 0x56348497f9c2 - core::result::Result::unwrap::h96ed6ddf3e3095c2 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:852 [INFO] [stdout] 12: 0x5634849aae7a - vobsub::probe::probe_sub_files::h015faf559cd9405e [INFO] [stdout] at src/probe.rs:42 [INFO] [stdout] 13: 0x5634849aae3a - vobsub::probe::probe_sub_files::{{closure}}::hbf18bc6b95a04b74 [INFO] [stdout] at src/probe.rs:41 [INFO] [stdout] 14: 0x5634849af74e - core::ops::function::FnOnce::call_once::hf38f8acdbb6ce321 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 15: 0x5634849bc7bf - as core::ops::function::FnOnce>::call_once::h355e655b04400826 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 16: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: 0x5634849d6dae - std::panicking::try::h5890cbed5d1d8df0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x5634849d6dae - std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x5634849d6dae - test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 20: 0x5634849b21e5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x5634849b63f5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x5634849b63f5 - as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x5634849b63f5 - std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 25: 0x5634849b69f2 - std::panicking::try::h332f368ed7d9b7d1 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x5634849b69f2 - std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x5634849b69f2 - std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x5634849b69f2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 29: 0x563484bf980f - as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 30: 0x563484c068e0 - as core::ops::function::FnOnce>::call_once::h92593001847bb63e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 31: 0x563484c068e0 - std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x563484c068e0 - std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7fd0a928a4a4 - start_thread [INFO] [stdout] 34: 0x7fd0a988cd0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- sub::parse_subtitles_from_subtitle_edit stdout ---- [INFO] [stdout] thread 'sub::parse_subtitles_from_subtitle_edit' panicked at 'called `Result::unwrap()` on an `Err` value: Error(Msg("Could not parse ../fixtures/tiny.idx"), State { next_error: Some(Os { code: 2, kind: NotFound, message: "No such file or directory" }), backtrace: Some(stack backtrace: [INFO] [stdout] 0: error_chain::make_backtrace::h12bac7a403e3c186 (0x563484bbd214) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:417 [INFO] [stdout] 1: core::ops::function::FnOnce::call_once::h9d2db975bc0a89b5 (0x5634849af5aa) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 2: core::option::Option::or_else::h4015fc5f2cc00ae0 (0x5634849adb69) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/option.rs:751 [INFO] [stdout] 3: error_chain::State::new::h965e62936a999344 (0x5634849a81fa) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:518 [INFO] [stdout] 4: as vobsub::errors::ResultExt>::chain_err::{{closure}}::h2162860d2a4e3bd4 (0x5634849840d6) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:195 [INFO] [stdout] 5: core::result::Result::map_err::h7acc70ed5281557f (0x5634849808b1) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:574 [INFO] [stdout] 6: as vobsub::errors::ResultExt>::chain_err::hed5cab5726c50e0c (0x5634849817b4) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:192 [INFO] [stdout] 7: vobsub::idx::Index::open::hd4832525c8512e82 (0x5634849a3b07) [INFO] [stdout] at src/idx.rs:117 [INFO] [stdout] 8: vobsub::sub::parse_subtitles_from_subtitle_edit::h388a32f9389bbaf7 (0x56348497e310) [INFO] [stdout] at src/sub.rs:672 [INFO] [stdout] 9: vobsub::sub::parse_subtitles_from_subtitle_edit::{{closure}}::h2c726ebbff94615b (0x56348497e2da) [INFO] [stdout] at src/sub.rs:668 [INFO] [stdout] 10: core::ops::function::FnOnce::call_once::hdce9929cc59b2948 (0x5634849af69e) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 11: as core::ops::function::FnOnce>::call_once::h355e655b04400826 (0x5634849bc7bf) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 12: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 13: std::panicking::try::h5890cbed5d1d8df0 (0x5634849d6dae) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 14: std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 (0x5634849b21e5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 15: std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 (0x5634849b63f5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 16: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: std::panicking::try::h332f368ed7d9b7d1 (0x5634849b69f2) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 18: as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 (0x563484bf980f) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 19: as core::ops::function::FnOnce>::call_once::h92593001847bb63e (0x563484c068e0) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 20: start_thread (0x7fd0a928a4a4) [INFO] [stdout] 21: __clone (0x7fd0a988cd0f) [INFO] [stdout] 22: (0x0)) })', src/libcore/result.rs:1084:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x563484c040fb - backtrace::backtrace::libunwind::trace::h23ae608c8b906c69 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x563484c040fb - backtrace::backtrace::trace_unsynchronized::h65b3ea295a85fd48 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x563484c040fb - std::sys_common::backtrace::_print::h24f527b44b6cfc06 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x563484c040fb - std::sys_common::backtrace::print::h712608e4347fd64a [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x563484c040fb - std::panicking::default_hook::{{closure}}::h6c3d570c2b500048 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x563484c03d6c - std::panicking::default_hook::hb29963fb4747e0dd [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x563484c0486d - std::panicking::rust_panic_with_hook::hd1236c3083de823a [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x563484c043f2 - std::panicking::continue_panic_fmt::he38ad41d6304a12c [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x563484c042d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x563484c1df6d - core::panicking::panic_fmt::h1bc6de43c92ad80c [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x563484c1e067 - core::result::unwrap_failed::hd83f272814becce6 [INFO] [stdout] at src/libcore/result.rs:1084 [INFO] [stdout] 11: 0x56348497fc68 - core::result::Result::unwrap::hfe3e5a1d704798fd [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:852 [INFO] [stdout] 12: 0x56348497e330 - vobsub::sub::parse_subtitles_from_subtitle_edit::h388a32f9389bbaf7 [INFO] [stdout] at src/sub.rs:672 [INFO] [stdout] 13: 0x56348497e2da - vobsub::sub::parse_subtitles_from_subtitle_edit::{{closure}}::h2c726ebbff94615b [INFO] [stdout] at src/sub.rs:668 [INFO] [stdout] 14: 0x5634849af69e - core::ops::function::FnOnce::call_once::hdce9929cc59b2948 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 15: 0x5634849bc7bf - as core::ops::function::FnOnce>::call_once::h355e655b04400826 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 16: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: 0x5634849d6dae - std::panicking::try::h5890cbed5d1d8df0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x5634849d6dae - std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x5634849d6dae - test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 20: 0x5634849b21e5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x5634849b63f5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x5634849b63f5 - as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x5634849b63f5 - std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 25: 0x5634849b69f2 - std::panicking::try::h332f368ed7d9b7d1 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x5634849b69f2 - std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x5634849b69f2 - std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x5634849b69f2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 29: 0x563484bf980f - as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 30: 0x563484c068e0 - as core::ops::function::FnOnce>::call_once::h92593001847bb63e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 31: 0x563484c068e0 - std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x563484c068e0 - std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7fd0a928a4a4 - start_thread [INFO] [stdout] 34: 0x7fd0a988cd0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- sub::parse_fuzz_corpus_seeds stdout ---- [INFO] [stdout] thread 'sub::parse_fuzz_corpus_seeds' panicked at 'called `Result::unwrap()` on an `Err` value: Error(Msg("Could not parse ../fixtures/tiny.idx"), State { next_error: Some(Os { code: 2, kind: NotFound, message: "No such file or directory" }), backtrace: Some(stack backtrace: [INFO] [stdout] 0: error_chain::make_backtrace::h12bac7a403e3c186 (0x563484bbd214) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:417 [INFO] [stdout] 1: core::ops::function::FnOnce::call_once::h9d2db975bc0a89b5 (0x5634849af5aa) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 2: core::option::Option::or_else::h4015fc5f2cc00ae0 (0x5634849adb69) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/option.rs:751 [INFO] [stdout] 3: error_chain::State::new::h965e62936a999344 (0x5634849a81fa) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:518 [INFO] [stdout] 4: as vobsub::errors::ResultExt>::chain_err::{{closure}}::h2162860d2a4e3bd4 (0x5634849840d6) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:195 [INFO] [stdout] 5: core::result::Result::map_err::h7acc70ed5281557f (0x5634849808b1) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:574 [INFO] [stdout] 6: as vobsub::errors::ResultExt>::chain_err::hed5cab5726c50e0c (0x5634849817b4) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:192 [INFO] [stdout] 7: vobsub::idx::Index::open::hd4832525c8512e82 (0x5634849a3b07) [INFO] [stdout] at src/idx.rs:117 [INFO] [stdout] 8: vobsub::sub::parse_fuzz_corpus_seeds::hf6a5843a584cf88c (0x56348497e4e3) [INFO] [stdout] at src/sub.rs:686 [INFO] [stdout] 9: vobsub::sub::parse_fuzz_corpus_seeds::{{closure}}::h707784f071277f23 (0x56348497e4aa) [INFO] [stdout] at src/sub.rs:679 [INFO] [stdout] 10: core::ops::function::FnOnce::call_once::h833a7d0f648a939e (0x5634849af54e) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 11: as core::ops::function::FnOnce>::call_once::h355e655b04400826 (0x5634849bc7bf) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 12: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 13: std::panicking::try::h5890cbed5d1d8df0 (0x5634849d6dae) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 14: std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 (0x5634849b21e5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 15: std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 (0x5634849b63f5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 16: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: std::panicking::try::h332f368ed7d9b7d1 (0x5634849b69f2) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 18: as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 (0x563484bf980f) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 19: as core::ops::function::FnOnce>::call_once::h92593001847bb63e (0x563484c068e0) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 20: start_thread (0x7fd0a928a4a4) [INFO] [stdout] 21: __clone (0x7fd0a988cd0f) [INFO] [stdout] 22: (0x0)) })', src/libcore/result.rs:1084:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x563484c040fb - backtrace::backtrace::libunwind::trace::h23ae608c8b906c69 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x563484c040fb - backtrace::backtrace::trace_unsynchronized::h65b3ea295a85fd48 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x563484c040fb - std::sys_common::backtrace::_print::h24f527b44b6cfc06 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x563484c040fb - std::sys_common::backtrace::print::h712608e4347fd64a [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x563484c040fb - std::panicking::default_hook::{{closure}}::h6c3d570c2b500048 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x563484c03d6c - std::panicking::default_hook::hb29963fb4747e0dd [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x563484c0486d - std::panicking::rust_panic_with_hook::hd1236c3083de823a [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x563484c043f2 - std::panicking::continue_panic_fmt::he38ad41d6304a12c [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x563484c042d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x563484c1df6d - core::panicking::panic_fmt::h1bc6de43c92ad80c [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x563484c1e067 - core::result::unwrap_failed::hd83f272814becce6 [INFO] [stdout] at src/libcore/result.rs:1084 [INFO] [stdout] 11: 0x56348497fc68 - core::result::Result::unwrap::hfe3e5a1d704798fd [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:852 [INFO] [stdout] 12: 0x56348497e509 - vobsub::sub::parse_fuzz_corpus_seeds::hf6a5843a584cf88c [INFO] [stdout] at src/sub.rs:686 [INFO] [stdout] 13: 0x56348497e4aa - vobsub::sub::parse_fuzz_corpus_seeds::{{closure}}::h707784f071277f23 [INFO] [stdout] at src/sub.rs:679 [INFO] [stdout] 14: 0x5634849af54e - core::ops::function::FnOnce::call_once::h833a7d0f648a939e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 15: 0x5634849bc7bf - as core::ops::function::FnOnce>::call_once::h355e655b04400826 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 16: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: 0x5634849d6dae - std::panicking::try::h5890cbed5d1d8df0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x5634849d6dae - std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x5634849d6dae - test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 20: 0x5634849b21e5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x5634849b63f5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x5634849b63f5 - as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x5634849b63f5 - std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 25: 0x5634849b69f2 - std::panicking::try::h332f368ed7d9b7d1 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x5634849b69f2 - std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x5634849b69f2 - std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x5634849b69f2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 29: 0x563484bf980f - as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 30: 0x563484c068e0 - as core::ops::function::FnOnce>::call_once::h92593001847bb63e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 31: 0x563484c068e0 - std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x563484c068e0 - std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7fd0a928a4a4 - start_thread [INFO] [stdout] 34: 0x7fd0a988cd0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- probe::probe_idx_files stdout ---- [INFO] [stdout] thread 'probe::probe_idx_files' panicked at 'called `Result::unwrap()` on an `Err` value: Error(ReadFile("../fixtures/tiny.idx"), State { next_error: Some(Os { code: 2, kind: NotFound, message: "No such file or directory" }), backtrace: Some(stack backtrace: [INFO] [stdout] 0: error_chain::make_backtrace::h12bac7a403e3c186 (0x563484bbd214) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:417 [INFO] [stdout] 1: core::ops::function::FnOnce::call_once::h9d2db975bc0a89b5 (0x5634849af5aa) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 2: core::option::Option::or_else::h4015fc5f2cc00ae0 (0x5634849adb69) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/option.rs:751 [INFO] [stdout] 3: error_chain::State::new::h965e62936a999344 (0x5634849a81fa) [INFO] [stdout] at /opt/crater/cargo-home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.10.0/src/lib.rs:518 [INFO] [stdout] 4: as vobsub::errors::ResultExt>::chain_err::{{closure}}::hcc5856aa1244d386 (0x5634849843d6) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:195 [INFO] [stdout] 5: core::result::Result::map_err::h5d4a6586f358829a (0x563484980481) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:574 [INFO] [stdout] 6: as vobsub::errors::ResultExt>::chain_err::h08d72a218c3dface (0x563484981654) [INFO] [stdout] at /opt/crater/workdir/<::error_chain::error_chain::error_chain_processed macros>:192 [INFO] [stdout] 7: vobsub::probe::has_magic::he23046ffed156de6 (0x5634849aa3c8) [INFO] [stdout] at src/probe.rs:13 [INFO] [stdout] 8: vobsub::probe::is_idx_file::hae301eb272258926 (0x5634849aa931) [INFO] [stdout] at src/probe.rs:21 [INFO] [stdout] 9: vobsub::probe::probe_idx_files::h60dd7f438bf89fe4 (0x5634849aad90) [INFO] [stdout] at src/probe.rs:27 [INFO] [stdout] 10: vobsub::probe::probe_idx_files::{{closure}}::hafeb9535e99b3085 (0x5634849aad5a) [INFO] [stdout] at src/probe.rs:26 [INFO] [stdout] 11: core::ops::function::FnOnce::call_once::h851951124186eb92 (0x5634849af57e) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 12: as core::ops::function::FnOnce>::call_once::h355e655b04400826 (0x5634849bc7bf) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 13: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 14: std::panicking::try::h5890cbed5d1d8df0 (0x5634849d6dae) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 15: std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 (0x5634849b21e5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 16: std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 (0x5634849b63f5) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 17: __rust_maybe_catch_panic (0x563484c0750a) [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 18: std::panicking::try::h332f368ed7d9b7d1 (0x5634849b69f2) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 19: as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 (0x563484bf980f) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 20: as core::ops::function::FnOnce>::call_once::h92593001847bb63e (0x563484c068e0) [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 21: start_thread (0x7fd0a928a4a4) [INFO] [stdout] 22: __clone (0x7fd0a988cd0f) [INFO] [stdout] 23: (0x0)) })', src/libcore/result.rs:1084:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x563484c040fb - backtrace::backtrace::libunwind::trace::h23ae608c8b906c69 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x563484c040fb - backtrace::backtrace::trace_unsynchronized::h65b3ea295a85fd48 [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x563484c040fb - std::sys_common::backtrace::_print::h24f527b44b6cfc06 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x563484c040fb - std::sys_common::backtrace::print::h712608e4347fd64a [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x563484c040fb - std::panicking::default_hook::{{closure}}::h6c3d570c2b500048 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x563484c03d6c - std::panicking::default_hook::hb29963fb4747e0dd [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x563484c0486d - std::panicking::rust_panic_with_hook::hd1236c3083de823a [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x563484c043f2 - std::panicking::continue_panic_fmt::he38ad41d6304a12c [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x563484c042d6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x563484c1df6d - core::panicking::panic_fmt::h1bc6de43c92ad80c [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x563484c1e067 - core::result::unwrap_failed::hd83f272814becce6 [INFO] [stdout] at src/libcore/result.rs:1084 [INFO] [stdout] 11: 0x56348497f9c2 - core::result::Result::unwrap::h96ed6ddf3e3095c2 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/result.rs:852 [INFO] [stdout] 12: 0x5634849aad9a - vobsub::probe::probe_idx_files::h60dd7f438bf89fe4 [INFO] [stdout] at src/probe.rs:27 [INFO] [stdout] 13: 0x5634849aad5a - vobsub::probe::probe_idx_files::{{closure}}::hafeb9535e99b3085 [INFO] [stdout] at src/probe.rs:26 [INFO] [stdout] 14: 0x5634849af57e - core::ops::function::FnOnce::call_once::h851951124186eb92 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 15: 0x5634849bc7bf - as core::ops::function::FnOnce>::call_once::h355e655b04400826 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 16: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 17: 0x5634849d6dae - std::panicking::try::h5890cbed5d1d8df0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x5634849d6dae - std::panic::catch_unwind::hf93cc71fc6442fdf [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x5634849d6dae - test::run_test::run_test_inner::{{closure}}::ha399a28a3066698d [INFO] [stdout] at src/libtest/lib.rs:1408 [INFO] [stdout] 20: 0x5634849b21e5 - std::sys_common::backtrace::__rust_begin_short_backtrace::h089859c639046955 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x5634849b63f5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h8d489100862c3e01 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x5634849b63f5 - as core::ops::function::FnOnce<()>>::call_once::h5746c9e2571824d0 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x5634849b63f5 - std::panicking::try::do_call::hfd443b32b22f72a6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x563484c0750a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:80 [INFO] [stdout] 25: 0x5634849b69f2 - std::panicking::try::h332f368ed7d9b7d1 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x5634849b69f2 - std::panic::catch_unwind::h316b7be8b4198222 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x5634849b69f2 - std::thread::Builder::spawn_unchecked::{{closure}}::h916aed08bc6e5276 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x5634849b69f2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h9091646be5c55ea6 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/libcore/ops/function.rs:235 [INFO] [stdout] 29: 0x563484bf980f - as core::ops::function::FnOnce>::call_once::hb5396a93648ae250 [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 30: 0x563484c068e0 - as core::ops::function::FnOnce>::call_once::h92593001847bb63e [INFO] [stdout] at /rustc/e450539c2a8d7f791268d699cbe45ab3e57d43a1/src/liballoc/boxed.rs:787 [INFO] [stdout] 31: 0x563484c068e0 - std::sys_common::thread::start_thread::h569f3ccc0d5dcd83 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x563484c068e0 - std::sys::unix::thread::Thread::new::thread_start::hd9ff46fad032d886 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7fd0a928a4a4 - start_thread [INFO] [stdout] 34: 0x7fd0a988cd0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] idx::parse_index [INFO] [stdout] probe::probe_idx_files [INFO] [stdout] probe::probe_sub_files [INFO] [stdout] sub::parse_fuzz_corpus_seeds [INFO] [stdout] sub::parse_subtitles [INFO] [stdout] sub::parse_subtitles_from_subtitle_edit [INFO] [stdout] [INFO] [stdout] test result: FAILED. 10 passed; 6 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] running `"docker" "inspect" "fa90d8cfae2ea16dc8e262d425f4754f14a4ccd431d4810542d03e605ed9bb08"` [INFO] running `"docker" "rm" "-f" "fa90d8cfae2ea16dc8e262d425f4754f14a4ccd431d4810542d03e605ed9bb08"` [INFO] [stdout] fa90d8cfae2ea16dc8e262d425f4754f14a4ccd431d4810542d03e605ed9bb08