[INFO] crate dotproperties 0.1.0 is already in cache [INFO] extracting crate dotproperties 0.1.0 into work/ex/beta-1.37-6/sources/1.36.0/reg/dotproperties/0.1.0 [INFO] extracting crate dotproperties 0.1.0 into work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/dotproperties/0.1.0 [INFO] validating manifest of dotproperties-0.1.0 on toolchain 1.36.0 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] validating manifest of dotproperties-0.1.0 on toolchain beta-2019-07-23 [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started frobbing dotproperties-0.1.0 [INFO] finished frobbing dotproperties-0.1.0 [INFO] frobbed toml for dotproperties-0.1.0 written to work/ex/beta-1.37-6/sources/1.36.0/reg/dotproperties/0.1.0/Cargo.toml [INFO] started frobbing dotproperties-0.1.0 [INFO] finished frobbing dotproperties-0.1.0 [INFO] frobbed toml for dotproperties-0.1.0 written to work/ex/beta-1.37-6/sources/beta-2019-07-23/reg/dotproperties/0.1.0/Cargo.toml [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+1.36.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"/mnt/big/crater/work/local/cargo-home/bin/cargo" "+beta-2019-07-23" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] testing dotproperties-0.1.0 against 1.36.0 for beta-1.37-6 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-5/1.36.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/1.36.0/reg/dotproperties/0.1.0:/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" "+1.36.0" "build" "--frozen"` [INFO] [stdout] 0bed30dffc0cb8d9a3a2f867adec78c5567fbef4d7c9fcdf7629350484f41b1a [INFO] running `"docker" "start" "-a" "0bed30dffc0cb8d9a3a2f867adec78c5567fbef4d7c9fcdf7629350484f41b1a"` [INFO] [stderr] warning: only one of `license` or `license-file` is necessary [INFO] [stderr] Compiling dotproperties v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/parsers/utf16.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / /// An escaped code for a UTF-16 code unit. [INFO] [stderr] 24 | | /// example: \u1a5c [INFO] [stderr] | |___________________^ [INFO] [stderr] 25 | / named!(code_unit, [INFO] [stderr] 26 | | do_parse!( [INFO] [stderr] 27 | | tag!(r"\u") >> [INFO] [stderr] 28 | | hex: flat_map!(take!(4), terminated!(hex_u32, eof!())) >> [INFO] [stderr] 29 | | (hex as u16) [INFO] [stderr] 30 | | ) [INFO] [stderr] 31 | | ); [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/parsers/utf16.rs:45:1 [INFO] [stderr] | [INFO] [stderr] 45 | /// A parser that reads an escaped code that belongs in a specific UTF-16 category [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 46 | / named_args!(code_unit_cat(cat: Category), [INFO] [stderr] 47 | | verify!(code_unit, |v| category(v) == cat) [INFO] [stderr] 48 | | ); [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/parsers/utf16.rs:61:1 [INFO] [stderr] | [INFO] [stderr] 61 | /// A parser that reads two escaped codes that form a Surrogate Pair [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 62 | / named!(code_unit_supplementary, [INFO] [stderr] 63 | | do_parse!( [INFO] [stderr] 64 | | high: call!(code_unit_cat, HighSurrogate) >> [INFO] [stderr] 65 | | low: call!(code_unit_cat, LowSurrogate) >> [INFO] [stderr] 66 | | (surrogate_pair_to_char(high, low)) [INFO] [stderr] 67 | | ) [INFO] [stderr] 68 | | ); [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/parsers/utf16.rs:77:1 [INFO] [stderr] | [INFO] [stderr] 77 | /// A parser that reads an escaped code that belongs to the BMP. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 78 | / named!(code_unit_bmp, [INFO] [stderr] 79 | | map!( [INFO] [stderr] 80 | | call!(code_unit_cat, Bmp), [INFO] [stderr] 81 | | basic_to_char [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/parsers/utf16.rs:85:1 [INFO] [stderr] | [INFO] [stderr] 85 | / /// A parser that reads a sequence of one or two escaped codes, depending on [INFO] [stderr] 86 | | /// the category they belong to. [INFO] [stderr] | |________________________________^ [INFO] [stderr] 87 | / named!(pub escape_sequence, [INFO] [stderr] 88 | | alt!(code_unit_bmp | code_unit_supplementary) [INFO] [stderr] 89 | | ); [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/parsers/mod.rs:36:1 [INFO] [stderr] | [INFO] [stderr] 36 | / /// A logical line is an antislash followed by an eol. The space characters [INFO] [stderr] 37 | | /// that follow are ignored. This parser consumes the logical line and produces [INFO] [stderr] 38 | | /// nothing. [INFO] [stderr] | |____________^ [INFO] [stderr] 39 | / named!(eat_one_logical_line<()>, [INFO] [stderr] 40 | | do_parse!( [INFO] [stderr] 41 | | tag!(r"\") >> [INFO] [stderr] 42 | | eat_one_eol >> [INFO] [stderr] ... | [INFO] [stderr] 45 | | ) [INFO] [stderr] 46 | | ); [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/parsers/mod.rs:48:1 [INFO] [stderr] | [INFO] [stderr] 48 | /// Consume multiple logical lines and produce nothing. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 49 | / named!(eat_logical_lines<()>, [INFO] [stderr] 50 | | do_parse!( [INFO] [stderr] 51 | | many0!(eat_one_logical_line) >> [INFO] [stderr] 52 | | () [INFO] [stderr] 53 | | ) [INFO] [stderr] 54 | | ); [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/parsers/mod.rs:70:1 [INFO] [stderr] | [INFO] [stderr] 70 | / /// Match a simple (non unicode) escape sequence \x, and produces its [INFO] [stderr] 71 | | /// corresponding character. [INFO] [stderr] 72 | | /// We take care to not match \u (an unicode escape) and \ followed by an eol [INFO] [stderr] 73 | | /// (a logical line split). [INFO] [stderr] 74 | | /// [INFO] [stderr] | |___^ [INFO] [stderr] 75 | / named!(escape_in_key_or_value, [INFO] [stderr] 76 | | do_parse!( [INFO] [stderr] 77 | | tag!(r"\") >> [INFO] [stderr] 78 | | c: none_of!("u\r\n") >> [INFO] [stderr] 79 | | (escaped_char_to_char(c)) [INFO] [stderr] 80 | | ) [INFO] [stderr] 81 | | ); [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/parsers/mod.rs:83:1 [INFO] [stderr] | [INFO] [stderr] 83 | /// Match all characters that don't need to be escaped in a key. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 84 | / named!(char_in_key, [INFO] [stderr] 85 | | none_of!(":=\n\r \t\u{c}\\") [INFO] [stderr] 86 | | ); [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/parsers/mod.rs:88:1 [INFO] [stderr] | [INFO] [stderr] 88 | /// Match all characters that don't need to be escaped in a value. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 89 | / named!(char_in_value, [INFO] [stderr] 90 | | none_of!("\n\r\\") [INFO] [stderr] 91 | | ); [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/parsers/mod.rs:93:1 [INFO] [stderr] | [INFO] [stderr] 93 | / /// Match a real character in a key: a unicode esacpe, a simple escape, or [INFO] [stderr] 94 | | /// a simple character. [INFO] [stderr] | |_______________________^ [INFO] [stderr] 95 | / named!(one_char_in_key, [INFO] [stderr] 96 | | alt!(escape_sequence | escape_in_key_or_value | char_in_key) [INFO] [stderr] 97 | | ); [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/parsers/mod.rs:99:1 [INFO] [stderr] | [INFO] [stderr] 99 | / /// Match a real character in a value: a unicode esacpe, a simple escape, or [INFO] [stderr] 100 | | /// a simple character. [INFO] [stderr] | |_______________________^ [INFO] [stderr] 101 | / named!(one_char_in_value, [INFO] [stderr] 102 | | alt!(escape_sequence | escape_in_key_or_value | char_in_value) [INFO] [stderr] 103 | | ); [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/parsers/mod.rs:105:1 [INFO] [stderr] | [INFO] [stderr] 105 | / /// Match a whole key. takes care of ignoring the logical lines that can [INFO] [stderr] 106 | | /// appear between any real character. [INFO] [stderr] | |______________________________________^ [INFO] [stderr] 107 | / named!(key, [INFO] [stderr] 108 | | do_parse!( [INFO] [stderr] 109 | | chars: sep!(eat_logical_lines, many1!(one_char_in_key)) >> [INFO] [stderr] 110 | | (chars.into_iter().collect()) [INFO] [stderr] 111 | | ) [INFO] [stderr] 112 | | ); [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/parsers/mod.rs:114:1 [INFO] [stderr] | [INFO] [stderr] 114 | / /// Match a whole value. takes care of ignoring the logical lines that can [INFO] [stderr] 115 | | /// appear between any real character. [INFO] [stderr] | |______________________________________^ [INFO] [stderr] 116 | / named!(value, [INFO] [stderr] 117 | | do_parse!( [INFO] [stderr] 118 | | chars: sep!(eat_logical_lines, many0!(one_char_in_value)) >> [INFO] [stderr] 119 | | (chars.into_iter().collect()) [INFO] [stderr] 120 | | ) [INFO] [stderr] 121 | | ); [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/parsers/mod.rs:123:1 [INFO] [stderr] | [INFO] [stderr] 123 | /// Consume interspersed whitespaces and logical line separators [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 124 | / named!(eat_whitespaces_and_logical_lines<()>, [INFO] [stderr] 125 | | do_parse!( [INFO] [stderr] 126 | | sep!(eat_logical_lines, eat_whitespaces) >> [INFO] [stderr] 127 | | () [INFO] [stderr] 128 | | ) [INFO] [stderr] 129 | | ); [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/parsers/mod.rs:131:1 [INFO] [stderr] | [INFO] [stderr] 131 | / /// Match a full key/value line. Take care of allowing logical line separators [INFO] [stderr] 132 | | /// anywhere. Also, the line can end with either an eol or an eof. [INFO] [stderr] | |__________________________________________________________________^ [INFO] [stderr] 133 | / named!(key_value_line<(String, String)>, [INFO] [stderr] 134 | | do_parse!( [INFO] [stderr] 135 | | eat_whitespaces_and_logical_lines >> [INFO] [stderr] 136 | | k: key >> [INFO] [stderr] ... | [INFO] [stderr] 143 | | ) [INFO] [stderr] 144 | | ); [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/parsers/mod.rs:146:1 [INFO] [stderr] | [INFO] [stderr] 146 | /// Match a blank line (only whitespaces) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 147 | / named!(blank_line<()>, [INFO] [stderr] 148 | | do_parse!( [INFO] [stderr] 149 | | eat_whitespaces >> [INFO] [stderr] 150 | | eat_one_eol_or_eof >> [INFO] [stderr] 151 | | () [INFO] [stderr] 152 | | ) [INFO] [stderr] 153 | | ); [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/parsers/mod.rs:161:1 [INFO] [stderr] | [INFO] [stderr] 161 | /// Match a line of comment [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 162 | / named!(comment_line<()>, [INFO] [stderr] 163 | | do_parse!( [INFO] [stderr] 164 | | eat_whitespaces >> [INFO] [stderr] 165 | | one_of!("#!") >> [INFO] [stderr] ... | [INFO] [stderr] 169 | | ) [INFO] [stderr] 170 | | ); [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/parsers/mod.rs:172:1 [INFO] [stderr] | [INFO] [stderr] 172 | / /// An intermediary parser, that matches one of the three lines types. [INFO] [stderr] 173 | | /// `comment_line` and `blank_line` return (), whereas `key_value_line` returns [INFO] [stderr] 174 | | /// a pair of Strings. To use these 3 parsers in the same `alt!`, they must [INFO] [stderr] 175 | | /// return the same type. We use `value!` and `opt!` to do so. [INFO] [stderr] | |______________________________________________________________^ [INFO] [stderr] 176 | / named!(full_parser_opt>>, [INFO] [stderr] 177 | | many0!( [INFO] [stderr] 178 | | alt!( [INFO] [stderr] 179 | | value!(None, complete!(comment_line)) | [INFO] [stderr] ... | [INFO] [stderr] 183 | | ) [INFO] [stderr] 184 | | ); [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/parsers/mod.rs:186:1 [INFO] [stderr] | [INFO] [stderr] 186 | / /// Match the full file format, and return the list of key value pairs [INFO] [stderr] 187 | | /// extracted. [INFO] [stderr] 188 | | /// Internally, it takes the result of `full_parser_opt` and it removes the [INFO] [stderr] 189 | | /// None values [INFO] [stderr] | |_______________^ [INFO] [stderr] 190 | / named!(pub full_parser>, [INFO] [stderr] 191 | | map!(full_parser_opt, |v| v.into_iter().filter_map(|x| x).collect()) [INFO] [stderr] 192 | | ); [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] Finished dev [unoptimized + debuginfo] target(s) in 1.09s [INFO] running `"docker" "inspect" "0bed30dffc0cb8d9a3a2f867adec78c5567fbef4d7c9fcdf7629350484f41b1a"` [INFO] running `"docker" "rm" "-f" "0bed30dffc0cb8d9a3a2f867adec78c5567fbef4d7c9fcdf7629350484f41b1a"` [INFO] [stdout] 0bed30dffc0cb8d9a3a2f867adec78c5567fbef4d7c9fcdf7629350484f41b1a [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-5/1.36.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/1.36.0/reg/dotproperties/0.1.0:/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" "+1.36.0" "test" "--frozen" "--no-run"` [INFO] [stdout] 1dc193a712c828bb2230e07b78157c36837638709e1be6123f3c7f8df359a713 [INFO] running `"docker" "start" "-a" "1dc193a712c828bb2230e07b78157c36837638709e1be6123f3c7f8df359a713"` [INFO] [stderr] warning: only one of `license` or `license-file` is necessary [INFO] [stderr] Compiling dotproperties v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/parsers/utf16.rs:23:1 [INFO] [stderr] | [INFO] [stderr] 23 | / /// An escaped code for a UTF-16 code unit. [INFO] [stderr] 24 | | /// example: \u1a5c [INFO] [stderr] | |___________________^ [INFO] [stderr] 25 | / named!(code_unit, [INFO] [stderr] 26 | | do_parse!( [INFO] [stderr] 27 | | tag!(r"\u") >> [INFO] [stderr] 28 | | hex: flat_map!(take!(4), terminated!(hex_u32, eof!())) >> [INFO] [stderr] 29 | | (hex as u16) [INFO] [stderr] 30 | | ) [INFO] [stderr] 31 | | ); [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/parsers/utf16.rs:45:1 [INFO] [stderr] | [INFO] [stderr] 45 | /// A parser that reads an escaped code that belongs in a specific UTF-16 category [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 46 | / named_args!(code_unit_cat(cat: Category), [INFO] [stderr] 47 | | verify!(code_unit, |v| category(v) == cat) [INFO] [stderr] 48 | | ); [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/parsers/utf16.rs:61:1 [INFO] [stderr] | [INFO] [stderr] 61 | /// A parser that reads two escaped codes that form a Surrogate Pair [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 62 | / named!(code_unit_supplementary, [INFO] [stderr] 63 | | do_parse!( [INFO] [stderr] 64 | | high: call!(code_unit_cat, HighSurrogate) >> [INFO] [stderr] 65 | | low: call!(code_unit_cat, LowSurrogate) >> [INFO] [stderr] 66 | | (surrogate_pair_to_char(high, low)) [INFO] [stderr] 67 | | ) [INFO] [stderr] 68 | | ); [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/parsers/utf16.rs:77:1 [INFO] [stderr] | [INFO] [stderr] 77 | /// A parser that reads an escaped code that belongs to the BMP. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 78 | / named!(code_unit_bmp, [INFO] [stderr] 79 | | map!( [INFO] [stderr] 80 | | call!(code_unit_cat, Bmp), [INFO] [stderr] 81 | | basic_to_char [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/parsers/utf16.rs:85:1 [INFO] [stderr] | [INFO] [stderr] 85 | / /// A parser that reads a sequence of one or two escaped codes, depending on [INFO] [stderr] 86 | | /// the category they belong to. [INFO] [stderr] | |________________________________^ [INFO] [stderr] 87 | / named!(pub escape_sequence, [INFO] [stderr] 88 | | alt!(code_unit_bmp | code_unit_supplementary) [INFO] [stderr] 89 | | ); [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/parsers/mod.rs:36:1 [INFO] [stderr] | [INFO] [stderr] 36 | / /// A logical line is an antislash followed by an eol. The space characters [INFO] [stderr] 37 | | /// that follow are ignored. This parser consumes the logical line and produces [INFO] [stderr] 38 | | /// nothing. [INFO] [stderr] | |____________^ [INFO] [stderr] 39 | / named!(eat_one_logical_line<()>, [INFO] [stderr] 40 | | do_parse!( [INFO] [stderr] 41 | | tag!(r"\") >> [INFO] [stderr] 42 | | eat_one_eol >> [INFO] [stderr] ... | [INFO] [stderr] 45 | | ) [INFO] [stderr] 46 | | ); [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/parsers/mod.rs:48:1 [INFO] [stderr] | [INFO] [stderr] 48 | /// Consume multiple logical lines and produce nothing. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 49 | / named!(eat_logical_lines<()>, [INFO] [stderr] 50 | | do_parse!( [INFO] [stderr] 51 | | many0!(eat_one_logical_line) >> [INFO] [stderr] 52 | | () [INFO] [stderr] 53 | | ) [INFO] [stderr] 54 | | ); [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/parsers/mod.rs:70:1 [INFO] [stderr] | [INFO] [stderr] 70 | / /// Match a simple (non unicode) escape sequence \x, and produces its [INFO] [stderr] 71 | | /// corresponding character. [INFO] [stderr] 72 | | /// We take care to not match \u (an unicode escape) and \ followed by an eol [INFO] [stderr] 73 | | /// (a logical line split). [INFO] [stderr] 74 | | /// [INFO] [stderr] | |___^ [INFO] [stderr] 75 | / named!(escape_in_key_or_value, [INFO] [stderr] 76 | | do_parse!( [INFO] [stderr] 77 | | tag!(r"\") >> [INFO] [stderr] 78 | | c: none_of!("u\r\n") >> [INFO] [stderr] 79 | | (escaped_char_to_char(c)) [INFO] [stderr] 80 | | ) [INFO] [stderr] 81 | | ); [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/parsers/mod.rs:83:1 [INFO] [stderr] | [INFO] [stderr] 83 | /// Match all characters that don't need to be escaped in a key. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 84 | / named!(char_in_key, [INFO] [stderr] 85 | | none_of!(":=\n\r \t\u{c}\\") [INFO] [stderr] 86 | | ); [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/parsers/mod.rs:88:1 [INFO] [stderr] | [INFO] [stderr] 88 | /// Match all characters that don't need to be escaped in a value. [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 89 | / named!(char_in_value, [INFO] [stderr] 90 | | none_of!("\n\r\\") [INFO] [stderr] 91 | | ); [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/parsers/mod.rs:93:1 [INFO] [stderr] | [INFO] [stderr] 93 | / /// Match a real character in a key: a unicode esacpe, a simple escape, or [INFO] [stderr] 94 | | /// a simple character. [INFO] [stderr] | |_______________________^ [INFO] [stderr] 95 | / named!(one_char_in_key, [INFO] [stderr] 96 | | alt!(escape_sequence | escape_in_key_or_value | char_in_key) [INFO] [stderr] 97 | | ); [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/parsers/mod.rs:99:1 [INFO] [stderr] | [INFO] [stderr] 99 | / /// Match a real character in a value: a unicode esacpe, a simple escape, or [INFO] [stderr] 100 | | /// a simple character. [INFO] [stderr] | |_______________________^ [INFO] [stderr] 101 | / named!(one_char_in_value, [INFO] [stderr] 102 | | alt!(escape_sequence | escape_in_key_or_value | char_in_value) [INFO] [stderr] 103 | | ); [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/parsers/mod.rs:105:1 [INFO] [stderr] | [INFO] [stderr] 105 | / /// Match a whole key. takes care of ignoring the logical lines that can [INFO] [stderr] 106 | | /// appear between any real character. [INFO] [stderr] | |______________________________________^ [INFO] [stderr] 107 | / named!(key, [INFO] [stderr] 108 | | do_parse!( [INFO] [stderr] 109 | | chars: sep!(eat_logical_lines, many1!(one_char_in_key)) >> [INFO] [stderr] 110 | | (chars.into_iter().collect()) [INFO] [stderr] 111 | | ) [INFO] [stderr] 112 | | ); [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/parsers/mod.rs:114:1 [INFO] [stderr] | [INFO] [stderr] 114 | / /// Match a whole value. takes care of ignoring the logical lines that can [INFO] [stderr] 115 | | /// appear between any real character. [INFO] [stderr] | |______________________________________^ [INFO] [stderr] 116 | / named!(value, [INFO] [stderr] 117 | | do_parse!( [INFO] [stderr] 118 | | chars: sep!(eat_logical_lines, many0!(one_char_in_value)) >> [INFO] [stderr] 119 | | (chars.into_iter().collect()) [INFO] [stderr] 120 | | ) [INFO] [stderr] 121 | | ); [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/parsers/mod.rs:123:1 [INFO] [stderr] | [INFO] [stderr] 123 | /// Consume interspersed whitespaces and logical line separators [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 124 | / named!(eat_whitespaces_and_logical_lines<()>, [INFO] [stderr] 125 | | do_parse!( [INFO] [stderr] 126 | | sep!(eat_logical_lines, eat_whitespaces) >> [INFO] [stderr] 127 | | () [INFO] [stderr] 128 | | ) [INFO] [stderr] 129 | | ); [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/parsers/mod.rs:131:1 [INFO] [stderr] | [INFO] [stderr] 131 | / /// Match a full key/value line. Take care of allowing logical line separators [INFO] [stderr] 132 | | /// anywhere. Also, the line can end with either an eol or an eof. [INFO] [stderr] | |__________________________________________________________________^ [INFO] [stderr] 133 | / named!(key_value_line<(String, String)>, [INFO] [stderr] 134 | | do_parse!( [INFO] [stderr] 135 | | eat_whitespaces_and_logical_lines >> [INFO] [stderr] 136 | | k: key >> [INFO] [stderr] ... | [INFO] [stderr] 143 | | ) [INFO] [stderr] 144 | | ); [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/parsers/mod.rs:146:1 [INFO] [stderr] | [INFO] [stderr] 146 | /// Match a blank line (only whitespaces) [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 147 | / named!(blank_line<()>, [INFO] [stderr] 148 | | do_parse!( [INFO] [stderr] 149 | | eat_whitespaces >> [INFO] [stderr] 150 | | eat_one_eol_or_eof >> [INFO] [stderr] 151 | | () [INFO] [stderr] 152 | | ) [INFO] [stderr] 153 | | ); [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/parsers/mod.rs:161:1 [INFO] [stderr] | [INFO] [stderr] 161 | /// Match a line of comment [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] 162 | / named!(comment_line<()>, [INFO] [stderr] 163 | | do_parse!( [INFO] [stderr] 164 | | eat_whitespaces >> [INFO] [stderr] 165 | | one_of!("#!") >> [INFO] [stderr] ... | [INFO] [stderr] 169 | | ) [INFO] [stderr] 170 | | ); [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/parsers/mod.rs:172:1 [INFO] [stderr] | [INFO] [stderr] 172 | / /// An intermediary parser, that matches one of the three lines types. [INFO] [stderr] 173 | | /// `comment_line` and `blank_line` return (), whereas `key_value_line` returns [INFO] [stderr] 174 | | /// a pair of Strings. To use these 3 parsers in the same `alt!`, they must [INFO] [stderr] 175 | | /// return the same type. We use `value!` and `opt!` to do so. [INFO] [stderr] | |______________________________________________________________^ [INFO] [stderr] 176 | / named!(full_parser_opt>>, [INFO] [stderr] 177 | | many0!( [INFO] [stderr] 178 | | alt!( [INFO] [stderr] 179 | | value!(None, complete!(comment_line)) | [INFO] [stderr] ... | [INFO] [stderr] 183 | | ) [INFO] [stderr] 184 | | ); [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/parsers/mod.rs:186:1 [INFO] [stderr] | [INFO] [stderr] 186 | / /// Match the full file format, and return the list of key value pairs [INFO] [stderr] 187 | | /// extracted. [INFO] [stderr] 188 | | /// Internally, it takes the result of `full_parser_opt` and it removes the [INFO] [stderr] 189 | | /// None values [INFO] [stderr] | |_______________^ [INFO] [stderr] 190 | / named!(pub full_parser>, [INFO] [stderr] 191 | | map!(full_parser_opt, |v| v.into_iter().filter_map(|x| x).collect()) [INFO] [stderr] 192 | | ); [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] Finished dev [unoptimized + debuginfo] target(s) in 2.21s [INFO] running `"docker" "inspect" "1dc193a712c828bb2230e07b78157c36837638709e1be6123f3c7f8df359a713"` [INFO] running `"docker" "rm" "-f" "1dc193a712c828bb2230e07b78157c36837638709e1be6123f3c7f8df359a713"` [INFO] [stdout] 1dc193a712c828bb2230e07b78157c36837638709e1be6123f3c7f8df359a713 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-5/1.36.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/1.36.0/reg/dotproperties/0.1.0:/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" "+1.36.0" "test" "--frozen"` [INFO] [stdout] 2cd2f1471dcf0e56566191b2c0bba403a466038917e3b08ceab2d8034bb7d6e9 [INFO] running `"docker" "start" "-a" "2cd2f1471dcf0e56566191b2c0bba403a466038917e3b08ceab2d8034bb7d6e9"` [INFO] [stderr] warning: only one of `license` or `license-file` is necessary [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.05s [INFO] [stderr] Running /opt/crater/target/debug/deps/dotproperties-e7630bdab65e7b24 [INFO] [stdout] [INFO] [stdout] running 8 tests [INFO] [stdout] test parsers::tests::test_key ... ok [INFO] [stdout] test parsers::tests::test_blank ... ok [INFO] [stdout] test parsers::utf16::tests::test_code_unit ... ok [INFO] [stdout] test parsers::tests::test_full_parser ... ok [INFO] [stdout] test parsers::tests::test_comment ... ok [INFO] [stdout] test parsers::tests::test_value ... ok [INFO] [stdout] test parsers::utf16::tests::test_escape_sequence ... ok [INFO] [stderr] Running /opt/crater/target/debug/deps/parse_samples-5c1dbe84110bab44 [INFO] [stdout] test parsers::tests::test_key_value_line ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 7 tests [INFO] [stdout] test test_parse_b ... ok [INFO] [stdout] test test_parse_i ... ok [INFO] [stdout] test test_parse_a ... ok [INFO] [stdout] test test_parse_g ... ok [INFO] [stdout] test test_parse_c ... ok [INFO] [stdout] test test_parse_samples_from_slice ... ok [INFO] [stderr] Doc-tests dotproperties [INFO] [stdout] test test_parse_samples_from_file ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 7 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 5 tests [INFO] [stdout] test src/lib.rs - parse_from_slice (line 54) ... ok [INFO] [stdout] test src/lib.rs - parse_from_slice (line 63) ... ok [INFO] [stdout] test src/lib.rs - parse_from_file (line 101) ... FAILED [INFO] [stdout] test src/lib.rs - parse_from_slice (line 74) ... ok [INFO] [stdout] test src/lib.rs - parse_from_file (line 110) ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- src/lib.rs - parse_from_file (line 101) stdout ---- [INFO] [stdout] thread 'src/lib.rs - parse_from_file (line 101)' panicked at 'test executable failed: [INFO] [stdout] [INFO] [stdout] thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 30, kind: Other, message: "Read-only file system" }', src/libcore/result.rs:999:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x560bbc1cbc93 - std::sys::unix::backtrace::tracing::imp::unwind_backtrace::h6485381528590a55 [INFO] [stdout] at src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:39 [INFO] [stdout] 1: 0x560bbc1c78cb - std::sys_common::backtrace::_print::h49a82ae9552e35c7 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:71 [INFO] [stdout] 2: 0x560bbc1cab26 - std::panicking::default_hook::{{closure}}::he20974adbefcc046 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:59 [INFO] [stdout] at src/libstd/panicking.rs:197 [INFO] [stdout] 3: 0x560bbc1ca8b9 - std::panicking::default_hook::he4af6af4ac7fef7b [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 4: 0x560bbc1cb17f - std::panicking::rust_panic_with_hook::h057ff03eb4c8000f [INFO] [stdout] at src/libstd/panicking.rs:474 [INFO] [stdout] 5: 0x560bbc1cad01 - std::panicking::continue_panic_fmt::ha6d6ae144369025b [INFO] [stdout] at src/libstd/panicking.rs:381 [INFO] [stdout] 6: 0x560bbc1cabe5 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:308 [INFO] [stdout] 7: 0x560bbc1db68c - core::panicking::panic_fmt::hc4f83bfed80aeabd [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 8: 0x560bbc1be8f7 - core::result::unwrap_failed::hac3fe6a57d2b45d4 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/macros.rs:18 [INFO] [stdout] 9: 0x560bbc1995a2 - core::result::Result::unwrap::h4d69aaf82e216a92 [INFO] [stdout] 10: 0x560bbc199bf4 - rust_out::main::h1cf9155cb6204ee7 [INFO] [stdout] 11: 0x560bbc19a6a2 - std::rt::lang_start::{{closure}}::h06d0fcfbcae13882 [INFO] [stdout] 12: 0x560bbc1cabd2 - std::panicking::try::do_call::hc3d8373a0b215f51 [INFO] [stdout] at src/libstd/rt.rs:49 [INFO] [stdout] at src/libstd/panicking.rs:293 [INFO] [stdout] 13: 0x560bbc1cce49 - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:85 [INFO] [stdout] 14: 0x560bbc1cb68c - std::rt::lang_start_internal::he5218c8b95d395f2 [INFO] [stdout] at src/libstd/panicking.rs:272 [INFO] [stdout] at src/libstd/panic.rs:394 [INFO] [stdout] at src/libstd/rt.rs:48 [INFO] [stdout] 15: 0x560bbc19a684 - std::rt::lang_start::hdef4740723826a9e [INFO] [stdout] 16: 0x560bbc199c9a - main [INFO] [stdout] 17: 0x7f0440c482e0 - __libc_start_main [INFO] [stdout] 18: 0x560bbc198c49 - _start [INFO] [stdout] 19: 0x0 - [INFO] [stdout] [INFO] [stdout] ', src/librustdoc/test.rs:341:17 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x7fc4aa11e823 - std::sys::unix::backtrace::tracing::imp::unwind_backtrace::h6485381528590a55 [INFO] [stdout] at src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:39 [INFO] [stdout] 1: 0x7fc4aa1164cb - std::sys_common::backtrace::_print::h49a82ae9552e35c7 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:71 [INFO] [stdout] 2: 0x7fc4aa11aa56 - std::panicking::default_hook::{{closure}}::he20974adbefcc046 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:59 [INFO] [stdout] at src/libstd/panicking.rs:197 [INFO] [stdout] 3: 0x7fc4aa11a77e - std::panicking::default_hook::he4af6af4ac7fef7b [INFO] [stdout] at src/libstd/panicking.rs:208 [INFO] [stdout] 4: 0x7fc4aa11b15f - std::panicking::rust_panic_with_hook::h057ff03eb4c8000f [INFO] [stdout] at src/libstd/panicking.rs:474 [INFO] [stdout] 5: 0x7fc4aa11ace1 - std::panicking::continue_panic_fmt::ha6d6ae144369025b [INFO] [stdout] at src/libstd/panicking.rs:381 [INFO] [stdout] 6: 0x7fc4aa11ac2e - std::panicking::begin_panic_fmt::he54eae869ed71eb1 [INFO] [stdout] at src/libstd/panicking.rs:336 [INFO] [stdout] 7: 0x557b09a899c8 - rustdoc::test::run_test::h29a20600da33f74f [INFO] [stdout] at src/librustdoc/test.rs:341 [INFO] [stdout] 8: 0x557b09a7d7c9 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h84ad3bdb52e265e9 [INFO] [stdout] at src/librustdoc/test.rs:715 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/ops/function.rs:231 [INFO] [stdout] 9: 0x7fc4ab6a1b7e - as core::ops::function::FnOnce>::call_once::h6b004fa8f4fc1608 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] 10: 0x7fc4ab6a1b7e - as core::ops::function::FnOnce>::call_once::h6b004fa8f4fc1608 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] 11: 0x7fc4aa12c169 - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:85 [INFO] [stdout] 12: 0x7fc4ab6bcf87 - test::run_test::run_test_inner::{{closure}}::h9a4d23c41d058d37 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panicking.rs:272 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panic.rs:394 [INFO] [stdout] at src/libtest/lib.rs:1468 [INFO] [stdout] 13: 0x7fc4ab6969a4 - std::sys_common::backtrace::__rust_begin_short_backtrace::h3765d76361a33ff7 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/sys_common/backtrace.rs:136 [INFO] [stdout] 14: 0x7fc4ab69aa54 - std::panicking::try::do_call::h6f86e980b52f74d5 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/thread/mod.rs:470 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panic.rs:315 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panicking.rs:293 [INFO] [stdout] 15: 0x7fc4aa12c169 - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:85 [INFO] [stdout] 16: 0x7fc4ab69b551 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h760b8a2b155f54c3 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panicking.rs:272 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panic.rs:394 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/thread/mod.rs:469 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/ops/function.rs:231 [INFO] [stdout] 17: 0x7fc4aa0fd36e - as core::ops::function::FnOnce>::call_once::h805c3cc89d534c05 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] 18: 0x7fc4aa12addf - std::sys::unix::thread::Thread::new::thread_start::h6f10b78f26c98dc6 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 19: 0x7fc4a9c944a3 - start_thread [INFO] [stdout] 20: 0x7fc4a97bfd0e - __clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- src/lib.rs - parse_from_file (line 110) stdout ---- [INFO] [stdout] thread 'src/lib.rs - parse_from_file (line 110)' panicked at 'test executable failed: [INFO] [stdout] [INFO] [stdout] thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Os { code: 30, kind: Other, message: "Read-only file system" }', src/libcore/result.rs:999:5 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x558d50d09dc3 - std::sys::unix::backtrace::tracing::imp::unwind_backtrace::h6485381528590a55 [INFO] [stdout] at src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:39 [INFO] [stdout] 1: 0x558d50d059db - std::sys_common::backtrace::_print::h49a82ae9552e35c7 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:71 [INFO] [stdout] 2: 0x558d50d08c36 - std::panicking::default_hook::{{closure}}::he20974adbefcc046 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:59 [INFO] [stdout] at src/libstd/panicking.rs:197 [INFO] [stdout] 3: 0x558d50d089c9 - std::panicking::default_hook::he4af6af4ac7fef7b [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 4: 0x558d50d0928f - std::panicking::rust_panic_with_hook::h057ff03eb4c8000f [INFO] [stdout] at src/libstd/panicking.rs:474 [INFO] [stdout] 5: 0x558d50d08e11 - std::panicking::continue_panic_fmt::ha6d6ae144369025b [INFO] [stdout] at src/libstd/panicking.rs:381 [INFO] [stdout] 6: 0x558d50d08cf5 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:308 [INFO] [stdout] 7: 0x558d50d19b2c - core::panicking::panic_fmt::hc4f83bfed80aeabd [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 8: 0x558d50cfc137 - core::result::unwrap_failed::hac3fe6a57d2b45d4 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/macros.rs:18 [INFO] [stdout] 9: 0x558d50cd4ec2 - core::result::Result::unwrap::h4d69aaf82e216a92 [INFO] [stdout] 10: 0x558d50cd5dea - rust_out::main::h1cf9155cb6204ee7 [INFO] [stdout] 11: 0x558d50cd3172 - std::rt::lang_start::{{closure}}::h06d0fcfbcae13882 [INFO] [stdout] 12: 0x558d50d08ce2 - std::panicking::try::do_call::hc3d8373a0b215f51 [INFO] [stdout] at src/libstd/rt.rs:49 [INFO] [stdout] at src/libstd/panicking.rs:293 [INFO] [stdout] 13: 0x558d50d0b2e9 - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:85 [INFO] [stdout] 14: 0x558d50d0979c - std::rt::lang_start_internal::he5218c8b95d395f2 [INFO] [stdout] at src/libstd/panicking.rs:272 [INFO] [stdout] at src/libstd/panic.rs:394 [INFO] [stdout] at src/libstd/rt.rs:48 [INFO] [stdout] 15: 0x558d50cd3154 - std::rt::lang_start::hdef4740723826a9e [INFO] [stdout] 16: 0x558d50cd5eea - main [INFO] [stdout] 17: 0x7fcc30e202e0 - __libc_start_main [INFO] [stdout] 18: 0x558d50cca239 - _start [INFO] [stdout] 19: 0x0 - [INFO] [stdout] [INFO] [stdout] ', src/librustdoc/test.rs:341:17 [INFO] [stdout] stack backtrace: [INFO] [stdout] 0: 0x7fc4aa11e823 - std::sys::unix::backtrace::tracing::imp::unwind_backtrace::h6485381528590a55 [INFO] [stdout] at src/libstd/sys/unix/backtrace/tracing/gcc_s.rs:39 [INFO] [stdout] 1: 0x7fc4aa1164cb - std::sys_common::backtrace::_print::h49a82ae9552e35c7 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:71 [INFO] [stdout] 2: 0x7fc4aa11aa56 - std::panicking::default_hook::{{closure}}::he20974adbefcc046 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:59 [INFO] [stdout] at src/libstd/panicking.rs:197 [INFO] [stdout] 3: 0x7fc4aa11a77e - std::panicking::default_hook::he4af6af4ac7fef7b [INFO] [stdout] at src/libstd/panicking.rs:208 [INFO] [stdout] 4: 0x7fc4aa11b15f - std::panicking::rust_panic_with_hook::h057ff03eb4c8000f [INFO] [stdout] at src/libstd/panicking.rs:474 [INFO] [stdout] 5: 0x7fc4aa11ace1 - std::panicking::continue_panic_fmt::ha6d6ae144369025b [INFO] [stdout] at src/libstd/panicking.rs:381 [INFO] [stdout] 6: 0x7fc4aa11ac2e - std::panicking::begin_panic_fmt::he54eae869ed71eb1 [INFO] [stdout] at src/libstd/panicking.rs:336 [INFO] [stdout] 7: 0x557b09a899c8 - rustdoc::test::run_test::h29a20600da33f74f [INFO] [stdout] at src/librustdoc/test.rs:341 [INFO] [stdout] 8: 0x557b09a7d7c9 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h84ad3bdb52e265e9 [INFO] [stdout] at src/librustdoc/test.rs:715 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/ops/function.rs:231 [INFO] [stdout] 9: 0x7fc4ab6a1b7e - as core::ops::function::FnOnce>::call_once::h6b004fa8f4fc1608 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] 10: 0x7fc4ab6a1b7e - as core::ops::function::FnOnce>::call_once::h6b004fa8f4fc1608 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] 11: 0x7fc4aa12c169 - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:85 [INFO] [stdout] 12: 0x7fc4ab6bcf87 - test::run_test::run_test_inner::{{closure}}::h9a4d23c41d058d37 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panicking.rs:272 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panic.rs:394 [INFO] [stdout] at src/libtest/lib.rs:1468 [INFO] [stdout] 13: 0x7fc4ab6969a4 - std::sys_common::backtrace::__rust_begin_short_backtrace::h3765d76361a33ff7 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/sys_common/backtrace.rs:136 [INFO] [stdout] 14: 0x7fc4ab69aa54 - std::panicking::try::do_call::h6f86e980b52f74d5 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/thread/mod.rs:470 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panic.rs:315 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panicking.rs:293 [INFO] [stdout] 15: 0x7fc4aa12c169 - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:85 [INFO] [stdout] 16: 0x7fc4ab69b551 - core::ops::function::FnOnce::call_once{{vtable.shim}}::h760b8a2b155f54c3 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panicking.rs:272 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/panic.rs:394 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libstd/thread/mod.rs:469 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/libcore/ops/function.rs:231 [INFO] [stdout] 17: 0x7fc4aa0fd36e - as core::ops::function::FnOnce>::call_once::h805c3cc89d534c05 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] 18: 0x7fc4aa12addf - std::sys::unix::thread::Thread::new::thread_start::h6f10b78f26c98dc6 [INFO] [stdout] at /rustc/a53f9df32fbb0b5f4382caaad8f1a46f36ea887c/src/liballoc/boxed.rs:704 [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 19: 0x7fc4a9c944a3 - start_thread [INFO] [stdout] 20: 0x7fc4a97bfd0e - __clone [INFO] [stdout] 21: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] src/lib.rs - parse_from_file (line 101) [INFO] [stdout] src/lib.rs - parse_from_file (line 110) [INFO] [stdout] [INFO] [stdout] test result: FAILED. 3 passed; 2 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--doc' [INFO] running `"docker" "inspect" "2cd2f1471dcf0e56566191b2c0bba403a466038917e3b08ceab2d8034bb7d6e9"` [INFO] running `"docker" "rm" "-f" "2cd2f1471dcf0e56566191b2c0bba403a466038917e3b08ceab2d8034bb7d6e9"` [INFO] [stdout] 2cd2f1471dcf0e56566191b2c0bba403a466038917e3b08ceab2d8034bb7d6e9