[INFO] updating cached repository Dineshs91/x-ray [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/Dineshs91/x-ray [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/Dineshs91/x-ray" "work/ex/beta-1.37-6/sources/1.36.0/gh/Dineshs91/x-ray"` [INFO] [stderr] Cloning into 'work/ex/beta-1.37-6/sources/1.36.0/gh/Dineshs91/x-ray'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/Dineshs91/x-ray" "work/ex/beta-1.37-6/sources/beta-2019-07-23/gh/Dineshs91/x-ray"` [INFO] [stderr] Cloning into 'work/ex/beta-1.37-6/sources/beta-2019-07-23/gh/Dineshs91/x-ray'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] d1739dfb88d4c4b3b3e1afb397f83f3312472079 [INFO] sha for GitHub repo Dineshs91/x-ray: d1739dfb88d4c4b3b3e1afb397f83f3312472079 [INFO] validating manifest of Dineshs91/x-ray 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 Dineshs91/x-ray 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 Dineshs91/x-ray [INFO] finished frobbing Dineshs91/x-ray [INFO] frobbed toml for Dineshs91/x-ray written to work/ex/beta-1.37-6/sources/1.36.0/gh/Dineshs91/x-ray/Cargo.toml [INFO] started frobbing Dineshs91/x-ray [INFO] finished frobbing Dineshs91/x-ray [INFO] frobbed toml for Dineshs91/x-ray written to work/ex/beta-1.37-6/sources/beta-2019-07-23/gh/Dineshs91/x-ray/Cargo.toml [INFO] crate Dineshs91/x-ray already has a lockfile, it will not be regenerated [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 Dineshs91/x-ray against beta-2019-07-23 for beta-1.37-6 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-3/beta-2019-07-23:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/beta-2019-07-23/gh/Dineshs91/x-ray:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-07-23" "build" "--frozen"` [INFO] [stdout] 1163c117f264e673a887c1fc696f6c3d5794cf71813ee038c716b33f9d1862b8 [INFO] running `"docker" "start" "-a" "1163c117f264e673a887c1fc696f6c3d5794cf71813ee038c716b33f9d1862b8"` [INFO] [stderr] Compiling linked-hash-map v0.3.0 [INFO] [stderr] Compiling strsim v0.5.2 [INFO] [stderr] Compiling unicode-segmentation v0.1.3 [INFO] [stderr] Compiling nom v2.2.1 [INFO] [stderr] Compiling term_size v0.2.3 [INFO] [stderr] Compiling toml v0.4.0 [INFO] [stderr] Compiling rustache v0.1.0 [INFO] [stderr] Compiling yaml-rust v0.3.5 [INFO] [stderr] Compiling clap v2.19.3 [INFO] [stderr] Compiling serde_yaml v0.7.0 [INFO] [stderr] Compiling x-ray v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/parser/mod.rs:132:1 [INFO] [stderr] | [INFO] [stderr] 132 | / /// Use this for parsing class inheritance [INFO] [stderr] 133 | | /// Example: [INFO] [stderr] 134 | | /// [INFO] [stderr] 135 | | /// class Dog(Animal): [INFO] [stderr] 136 | | /// def __init__(self): [INFO] [stderr] 137 | | /// pass [INFO] [stderr] 138 | | /// [INFO] [stderr] | |___^ [INFO] [stderr] 139 | / named!(parent>, do_parse!( [INFO] [stderr] 140 | | tag!("(") >> [INFO] [stderr] 141 | | parents: ws!(separated_list!(tag!(","), util::ident)) >> [INFO] [stderr] 142 | | tag!(")") >> [INFO] [stderr] 143 | | (parents) [INFO] [stderr] 144 | | )); [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/parser/mod.rs:132:1 [INFO] [stderr] | [INFO] [stderr] 132 | / /// Use this for parsing class inheritance [INFO] [stderr] 133 | | /// Example: [INFO] [stderr] 134 | | /// [INFO] [stderr] 135 | | /// class Dog(Animal): [INFO] [stderr] 136 | | /// def __init__(self): [INFO] [stderr] 137 | | /// pass [INFO] [stderr] 138 | | /// [INFO] [stderr] | |___^ [INFO] [stderr] 139 | / named!(parent>, do_parse!( [INFO] [stderr] 140 | | tag!("(") >> [INFO] [stderr] 141 | | parents: ws!(separated_list!(tag!(","), util::ident)) >> [INFO] [stderr] 142 | | tag!(")") >> [INFO] [stderr] 143 | | (parents) [INFO] [stderr] 144 | | )); [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] Finished dev [unoptimized + debuginfo] target(s) in 38.92s [INFO] running `"docker" "inspect" "1163c117f264e673a887c1fc696f6c3d5794cf71813ee038c716b33f9d1862b8"` [INFO] running `"docker" "rm" "-f" "1163c117f264e673a887c1fc696f6c3d5794cf71813ee038c716b33f9d1862b8"` [INFO] [stdout] 1163c117f264e673a887c1fc696f6c3d5794cf71813ee038c716b33f9d1862b8 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-3/beta-2019-07-23:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/beta-2019-07-23/gh/Dineshs91/x-ray:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-07-23" "test" "--frozen" "--no-run"` [INFO] [stdout] 66d1939c45bbe8f16f4bc3508447ff1e6533d60fd31320e983fcd585df108c0b [INFO] running `"docker" "start" "-a" "66d1939c45bbe8f16f4bc3508447ff1e6533d60fd31320e983fcd585df108c0b"` [INFO] [stderr] Compiling x-ray v0.1.0 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/parser/mod.rs:132:1 [INFO] [stderr] | [INFO] [stderr] 132 | / /// Use this for parsing class inheritance [INFO] [stderr] 133 | | /// Example: [INFO] [stderr] 134 | | /// [INFO] [stderr] 135 | | /// class Dog(Animal): [INFO] [stderr] 136 | | /// def __init__(self): [INFO] [stderr] 137 | | /// pass [INFO] [stderr] 138 | | /// [INFO] [stderr] | |___^ [INFO] [stderr] 139 | / named!(parent>, do_parse!( [INFO] [stderr] 140 | | tag!("(") >> [INFO] [stderr] 141 | | parents: ws!(separated_list!(tag!(","), util::ident)) >> [INFO] [stderr] 142 | | tag!(")") >> [INFO] [stderr] 143 | | (parents) [INFO] [stderr] 144 | | )); [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/parser/mod.rs:132:1 [INFO] [stderr] | [INFO] [stderr] 132 | / /// Use this for parsing class inheritance [INFO] [stderr] 133 | | /// Example: [INFO] [stderr] 134 | | /// [INFO] [stderr] 135 | | /// class Dog(Animal): [INFO] [stderr] 136 | | /// def __init__(self): [INFO] [stderr] 137 | | /// pass [INFO] [stderr] 138 | | /// [INFO] [stderr] | |___^ [INFO] [stderr] 139 | / named!(parent>, do_parse!( [INFO] [stderr] 140 | | tag!("(") >> [INFO] [stderr] 141 | | parents: ws!(separated_list!(tag!(","), util::ident)) >> [INFO] [stderr] 142 | | tag!(")") >> [INFO] [stderr] 143 | | (parents) [INFO] [stderr] 144 | | )); [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] Finished dev [unoptimized + debuginfo] target(s) in 8.08s [INFO] running `"docker" "inspect" "66d1939c45bbe8f16f4bc3508447ff1e6533d60fd31320e983fcd585df108c0b"` [INFO] running `"docker" "rm" "-f" "66d1939c45bbe8f16f4bc3508447ff1e6533d60fd31320e983fcd585df108c0b"` [INFO] [stdout] 66d1939c45bbe8f16f4bc3508447ff1e6533d60fd31320e983fcd585df108c0b [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.37-6/worker-3/beta-2019-07-23:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.37-6/sources/beta-2019-07-23/gh/Dineshs91/x-ray:/opt/crater/workdir:ro,Z" "-v" "/mnt/big/crater/work/local/cargo-home:/opt/crater/cargo-home:ro,Z" "-v" "/mnt/big/crater/work/local/rustup-home:/opt/crater/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/opt/crater/workdir" "-e" "MAP_USER_ID=1000" "-e" "CARGO_TARGET_DIR=/opt/crater/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/crater/cargo-home" "-e" "RUSTUP_HOME=/opt/crater/rustup-home" "-w" "/opt/crater/workdir" "-m" "1536M" "--network" "none" "rustops/crates-build-env" "/opt/crater/cargo-home/bin/cargo" "+beta-2019-07-23" "test" "--frozen"` [INFO] [stdout] bda00515a8b0531502070cac106f9bfca66b070eec501520662aaef6161fcdb4 [INFO] running `"docker" "start" "-a" "bda00515a8b0531502070cac106f9bfca66b070eec501520662aaef6161fcdb4"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.04s [INFO] [stderr] Running /opt/crater/target/debug/deps/x_ray-5ace35bc7ce0efc0 [INFO] [stdout] [INFO] [stdout] running 28 tests [INFO] [stdout] test parser::test_parser_doc_string_with_single_quotes ... ok [INFO] [stdout] test parser::test_parser_doc_string ... ok [INFO] [stdout] test parser::test_parser_class_with_multiple_methods ... ok [INFO] [stdout] test parser::test_parser_class_with_inheritance ... ok [INFO] [stdout] test parser::test_parser_import ... ok [INFO] [stdout] test parser::test_parser_import_from_absolute ... ok [INFO] [stdout] test parser::test_parser_class_with_class_variables ... ok [INFO] [stdout] test parser::test_parser_import_from_relative_level_1 ... ok [INFO] [stdout] test parser::test_parser_import_from_relative_level_2 ... ok [INFO] [stdout] test parser::test_item_module_doc_string ... ok [INFO] [stdout] test parser::test_parser_item_fn ... ok [INFO] [stdout] test parser::test_parser_item_fn_arg_ending_with_comma ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_decorator ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_default_arg_value ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_multiple_functions ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_only_doc_strings ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_underscore ... ok [INFO] [stdout] test parser::test_parser_items_class_with_non_sequential_methods ... ok [INFO] [stdout] test parser::test_parser_doc_string_with_double_quotes_in_the_text ... ok [INFO] [stdout] test parser::test_parser_items_with_class_and_function ... ok [INFO] [stdout] test parser::test_parser_shebang ... ok [INFO] [stdout] test parser::test_parser_multiple_imports_and_function ... ok [INFO] [stdout] test parser::test_parser_class ... ok [INFO] [stdout] test template::test_function_template_without_doc_string ... ok [INFO] [stdout] test template::test_class_template_with_inheritance ... ok [INFO] [stdout] test template::test_class_template ... ok [INFO] [stdout] test template::test_function_template ... ok [INFO] [stdout] test template::test_class_template_with_methods ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 28 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Running /opt/crater/target/debug/deps/x_ray-3a087c32e6738131 [INFO] [stdout] [INFO] [stdout] running 28 tests [INFO] [stdout] test parser::test_item_module_doc_string ... ok [INFO] [stdout] test parser::test_parser_class ... ok [INFO] [stdout] test parser::test_parser_import_from_absolute ... ok [INFO] [stdout] test parser::test_parser_doc_string_with_single_quotes ... ok [INFO] [stdout] test parser::test_parser_doc_string_with_double_quotes_in_the_text ... ok [INFO] [stdout] test parser::test_parser_item_fn ... ok [INFO] [stdout] test parser::test_parser_class_with_class_variables ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_decorator ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_default_arg_value ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_multiple_functions ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_only_doc_strings ... ok [INFO] [stdout] test parser::test_parser_item_fn_with_underscore ... ok [INFO] [stdout] test parser::test_parser_items_class_with_non_sequential_methods ... ok [INFO] [stdout] test parser::test_parser_items_with_class_and_function ... ok [INFO] [stdout] test parser::test_parser_multiple_imports_and_function ... ok [INFO] [stdout] test parser::test_parser_shebang ... ok [INFO] [stdout] test parser::test_parser_import ... ok [INFO] [stdout] test parser::test_parser_import_from_relative_level_2 ... ok [INFO] [stdout] test parser::test_parser_item_fn_arg_ending_with_comma ... ok [INFO] [stdout] test parser::test_parser_doc_string ... ok [INFO] [stdout] test parser::test_parser_import_from_relative_level_1 ... ok [INFO] [stdout] test parser::test_parser_class_with_multiple_methods ... ok [INFO] [stdout] test parser::test_parser_class_with_inheritance ... ok [INFO] [stdout] test template::test_class_template ... ok [INFO] [stdout] test template::test_function_template ... ok [INFO] [stdout] test template::test_function_template_without_doc_string ... ok [INFO] [stdout] test template::test_class_template_with_inheritance ... ok [INFO] [stdout] test template::test_class_template_with_methods ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 28 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] Running /opt/crater/target/debug/deps/integration_test-dd5f4ff45a0f8356 [INFO] [stdout] [INFO] [stdout] running 3 tests [INFO] [stdout] test test_src_parse_gen_toml ... FAILED [INFO] [stdout] test test_src_main ... FAILED [INFO] [stdout] test test_src_parse_gen_yaml ... FAILED [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] [INFO] [stdout] ---- test_src_parse_gen_toml stdout ---- [INFO] [stdout] thread 'test_src_parse_gen_toml' 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: 0x557a266d300b - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x557a266d300b - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x557a266d300b - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x557a266d300b - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x557a266d300b - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x557a266d2c7a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x557a266d3780 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x557a266d3302 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x557a266d31e6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x557a266ee21d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x557a264d6b88 - core::result::unwrap_failed::h79e7fe9c003042c5 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/macros.rs:18 [INFO] [stdout] 11: 0x557a261e2bdd - core::result::Result::unwrap::h94c34216463ce32c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/result.rs:800 [INFO] [stdout] 12: 0x557a261e05fc - integration_test::test_src_parse_gen_toml::h70bbb94d41aa7736 [INFO] [stdout] at tests/integration_test.rs:12 [INFO] [stdout] 13: 0x557a261e05ba - integration_test::test_src_parse_gen_toml::{{closure}}::ha55b504ef4cc91c9 [INFO] [stdout] at tests/integration_test.rs:11 [INFO] [stdout] 14: 0x557a261e277e - core::ops::function::FnOnce::call_once::he9fada3e743ac832 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 15: 0x557a261edbaf - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 16: 0x557a266d632a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 17: 0x557a262081a8 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x557a262081a8 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x557a262081a8 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 20: 0x557a261e3025 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x557a261e71a5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x557a261e71a5 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x557a261e71a5 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x557a266d632a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 25: 0x557a261e77e2 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x557a261e77e2 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x557a261e77e2 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x557a261e77e2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 29: 0x557a266c807f - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 30: 0x557a266d5a80 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x557a266d5a80 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x557a266d5a80 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7ff58f0cf4a4 - start_thread [INFO] [stdout] 34: 0x7ff58ebfad0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- test_src_main stdout ---- [INFO] [stdout] thread 'test_src_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: 0x557a266d300b - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x557a266d300b - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x557a266d300b - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x557a266d300b - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x557a266d300b - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x557a266d2c7a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x557a266d3780 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x557a266d3302 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x557a266d31e6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x557a266ee21d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x557a264d6b88 - core::result::unwrap_failed::h79e7fe9c003042c5 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/macros.rs:18 [INFO] [stdout] 11: 0x557a261e2bdd - core::result::Result::unwrap::h94c34216463ce32c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/result.rs:800 [INFO] [stdout] 12: 0x557a261e0f3c - integration_test::test_src_main::h80383fe8ee80930d [INFO] [stdout] at tests/integration_test.rs:65 [INFO] [stdout] 13: 0x557a261e0efa - integration_test::test_src_main::{{closure}}::hb580096daf5fa579 [INFO] [stdout] at tests/integration_test.rs:63 [INFO] [stdout] 14: 0x557a261e26fe - core::ops::function::FnOnce::call_once::h312a6cea1531bb41 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 15: 0x557a261edbaf - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 16: 0x557a266d632a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 17: 0x557a262081a8 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x557a262081a8 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x557a262081a8 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 20: 0x557a261e3025 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x557a261e71a5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x557a261e71a5 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x557a261e71a5 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x557a266d632a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 25: 0x557a261e77e2 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x557a261e77e2 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x557a261e77e2 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x557a261e77e2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 29: 0x557a266c807f - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 30: 0x557a266d5a80 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x557a266d5a80 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x557a266d5a80 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7ff58f0cf4a4 - start_thread [INFO] [stdout] 34: 0x7ff58ebfad0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] ---- test_src_parse_gen_yaml stdout ---- [INFO] [stdout] thread 'test_src_parse_gen_yaml' 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: 0x557a266d300b - backtrace::backtrace::libunwind::trace::h5dfa5d4c5feed6dc [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/libunwind.rs:88 [INFO] [stdout] 1: 0x557a266d300b - backtrace::backtrace::trace_unsynchronized::hb731fe64f3fa469f [INFO] [stdout] at /cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.29/src/backtrace/mod.rs:66 [INFO] [stdout] 2: 0x557a266d300b - std::sys_common::backtrace::_print::hf4fd45fe7ae4a250 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:47 [INFO] [stdout] 3: 0x557a266d300b - std::sys_common::backtrace::print::h31646c3786c57441 [INFO] [stdout] at src/libstd/sys_common/backtrace.rs:36 [INFO] [stdout] 4: 0x557a266d300b - std::panicking::default_hook::{{closure}}::hda785e768c746ae7 [INFO] [stdout] at src/libstd/panicking.rs:200 [INFO] [stdout] 5: 0x557a266d2c7a - std::panicking::default_hook::h0c4b76f338614ef1 [INFO] [stdout] at src/libstd/panicking.rs:211 [INFO] [stdout] 6: 0x557a266d3780 - std::panicking::rust_panic_with_hook::h096dff2cb12b67ce [INFO] [stdout] at src/libstd/panicking.rs:477 [INFO] [stdout] 7: 0x557a266d3302 - std::panicking::continue_panic_fmt::h0046167652be99a6 [INFO] [stdout] at src/libstd/panicking.rs:384 [INFO] [stdout] 8: 0x557a266d31e6 - rust_begin_unwind [INFO] [stdout] at src/libstd/panicking.rs:311 [INFO] [stdout] 9: 0x557a266ee21d - core::panicking::panic_fmt::h8980489a6c4a44cb [INFO] [stdout] at src/libcore/panicking.rs:85 [INFO] [stdout] 10: 0x557a264d6b88 - core::result::unwrap_failed::h79e7fe9c003042c5 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/macros.rs:18 [INFO] [stdout] 11: 0x557a261e2bdd - core::result::Result::unwrap::h94c34216463ce32c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/result.rs:800 [INFO] [stdout] 12: 0x557a261e0a9c - integration_test::test_src_parse_gen_yaml::hd98c53be620deca7 [INFO] [stdout] at tests/integration_test.rs:38 [INFO] [stdout] 13: 0x557a261e0a5a - integration_test::test_src_parse_gen_yaml::{{closure}}::h7a9c6f2f7df0f53e [INFO] [stdout] at tests/integration_test.rs:37 [INFO] [stdout] 14: 0x557a261e26be - core::ops::function::FnOnce::call_once::h0c7236afc39d29d1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 15: 0x557a261edbaf - as core::ops::function::FnOnce>::call_once::h9568fda2c3b99042 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 16: 0x557a266d632a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 17: 0x557a262081a8 - std::panicking::try::h4b4c6c15836266eb [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 18: 0x557a262081a8 - std::panic::catch_unwind::h133691b514d0224c [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 19: 0x557a262081a8 - test::run_test::run_test_inner::{{closure}}::h41355d9f207d71fe [INFO] [stdout] at src/libtest/lib.rs:1466 [INFO] [stdout] 20: 0x557a261e3025 - std::sys_common::backtrace::__rust_begin_short_backtrace::h7c86e4012abd2d40 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/sys_common/backtrace.rs:77 [INFO] [stdout] 21: 0x557a261e71a5 - std::thread::Builder::spawn_unchecked::{{closure}}::{{closure}}::h2ba9d55fec0ea776 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:470 [INFO] [stdout] 22: 0x557a261e71a5 - as core::ops::function::FnOnce<()>>::call_once::hdf89f4d89df3dda3 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:315 [INFO] [stdout] 23: 0x557a261e71a5 - std::panicking::try::do_call::h59b39c89384b7a2f [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:296 [INFO] [stdout] 24: 0x557a266d632a - __rust_maybe_catch_panic [INFO] [stdout] at src/libpanic_unwind/lib.rs:82 [INFO] [stdout] 25: 0x557a261e77e2 - std::panicking::try::h9fff34be50f16431 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panicking.rs:275 [INFO] [stdout] 26: 0x557a261e77e2 - std::panic::catch_unwind::h7551856ff7c5e12a [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/panic.rs:394 [INFO] [stdout] 27: 0x557a261e77e2 - std::thread::Builder::spawn_unchecked::{{closure}}::hafea48c774d796e7 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libstd/thread/mod.rs:469 [INFO] [stdout] 28: 0x557a261e77e2 - core::ops::function::FnOnce::call_once{{vtable.shim}}::he5fe7b84ce5a3830 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/libcore/ops/function.rs:231 [INFO] [stdout] 29: 0x557a266c807f - as core::ops::function::FnOnce>::call_once::h55ef432b72ff7a0b [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 30: 0x557a266d5a80 - as core::ops::function::FnOnce>::call_once::h9294a5138530eae1 [INFO] [stdout] at /rustc/61d1607e0f6a18bb4897d6f9b10abeac9e11eb8e/src/liballoc/boxed.rs:746 [INFO] [stdout] 31: 0x557a266d5a80 - std::sys_common::thread::start_thread::h0d2733dd32c3723c [INFO] [stdout] at src/libstd/sys_common/thread.rs:13 [INFO] [stdout] 32: 0x557a266d5a80 - std::sys::unix::thread::Thread::new::thread_start::hf1005dad6ba8f2b1 [INFO] [stdout] at src/libstd/sys/unix/thread.rs:79 [INFO] [stdout] 33: 0x7ff58f0cf4a4 - start_thread [INFO] [stdout] 34: 0x7ff58ebfad0f - __clone [INFO] [stdout] 35: 0x0 - [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] failures: [INFO] [stdout] test_src_main [INFO] [stdout] test_src_parse_gen_toml [INFO] [stdout] test_src_parse_gen_yaml [INFO] [stdout] [INFO] [stdout] test result: FAILED. 0 passed; 3 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stderr] error: test failed, to rerun pass '--test integration_test' [INFO] running `"docker" "inspect" "bda00515a8b0531502070cac106f9bfca66b070eec501520662aaef6161fcdb4"` [INFO] running `"docker" "rm" "-f" "bda00515a8b0531502070cac106f9bfca66b070eec501520662aaef6161fcdb4"` [INFO] [stdout] bda00515a8b0531502070cac106f9bfca66b070eec501520662aaef6161fcdb4