[INFO] updating cached repository brain-lang/brain [INFO] running `"git" "fetch" "--all"` [INFO] [stdout] Fetching origin [INFO] [stderr] From git://github.com/brain-lang/brain [INFO] [stderr] * branch HEAD -> FETCH_HEAD [INFO] running `"git" "clone" "work/cache/sources/gh/brain-lang/brain" "work/ex/beta-1.38-1/sources/1.37.0/gh/brain-lang/brain"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/1.37.0/gh/brain-lang/brain'... [INFO] [stderr] done. [INFO] running `"git" "clone" "work/cache/sources/gh/brain-lang/brain" "work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/brain-lang/brain"` [INFO] [stderr] Cloning into 'work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/brain-lang/brain'... [INFO] [stderr] done. [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] 234eccd8f5a71818704fe79d32c5c3eb73bce5d4 [INFO] sha for GitHub repo brain-lang/brain: 234eccd8f5a71818704fe79d32c5c3eb73bce5d4 [INFO] validating manifest of brain-lang/brain 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 brain-lang/brain 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 brain-lang/brain [INFO] finished frobbing brain-lang/brain [INFO] frobbed toml for brain-lang/brain written to work/ex/beta-1.38-1/sources/1.37.0/gh/brain-lang/brain/Cargo.toml [INFO] started frobbing brain-lang/brain [INFO] finished frobbing brain-lang/brain [INFO] frobbed toml for brain-lang/brain written to work/ex/beta-1.38-1/sources/beta-2019-08-13/gh/brain-lang/brain/Cargo.toml [INFO] crate brain-lang/brain already has a lockfile, it will not be regenerated [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 brain-lang/brain against 1.37.0 for beta-1.38-1 [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-1/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/gh/brain-lang/brain:/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.37.0" "build" "--frozen"` [INFO] [stdout] 1511d3a0e89ea6fb669416a53b3da49e1316ecb4a2fcae660104d2ef7187552a [INFO] running `"docker" "start" "-a" "1511d3a0e89ea6fb669416a53b3da49e1316ecb4a2fcae660104d2ef7187552a"` [INFO] [stderr] Compiling term_size v0.3.0 [INFO] [stderr] Compiling clap v2.24.2 [INFO] [stderr] Compiling brain v0.1.2 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/operations/primitives.rs:64:1 [INFO] [stderr] | [INFO] [stderr] 64 | / /// To add a primitive, simply add a field to the following struct [INFO] [stderr] 65 | | /// Everything else will be generated for you [INFO] [stderr] | |_____________________________________________^ [INFO] [stderr] 66 | / impl_primitives! { [INFO] [stderr] 67 | | pub struct Primitives { [INFO] [stderr] 68 | | unit: Option, [INFO] [stderr] 69 | | array: Option, [INFO] [stderr] ... | [INFO] [stderr] 72 | | } [INFO] [stderr] 73 | | } [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/core/primitives/boolean.rs:212:17 [INFO] [stderr] | [INFO] [stderr] 212 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 213 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 214 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 215 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 216 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 217 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 234 | | } [INFO] [stderr] 235 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/core/primitives/boolean.rs:359:17 [INFO] [stderr] | [INFO] [stderr] 359 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 360 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 361 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 362 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 363 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 364 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 378 | | } [INFO] [stderr] 379 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/core/primitives/boolean.rs:513:17 [INFO] [stderr] | [INFO] [stderr] 513 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 514 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 515 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 516 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 517 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 518 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 548 | | }] [INFO] [stderr] 549 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/core/primitives/boolean.rs:641:17 [INFO] [stderr] | [INFO] [stderr] 641 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 642 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 643 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 644 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 645 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 646 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 676 | | }] [INFO] [stderr] 677 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/operations/scope.rs:81:24 [INFO] [stderr] | [INFO] [stderr] 81 | operations: Rc OperationsResult>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&mut ScopeStack, FuncArgs, MemoryBlock) -> OperationsResult` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(bare_trait_objects)] on by default [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 27.03s [INFO] running `"docker" "inspect" "1511d3a0e89ea6fb669416a53b3da49e1316ecb4a2fcae660104d2ef7187552a"` [INFO] running `"docker" "rm" "-f" "1511d3a0e89ea6fb669416a53b3da49e1316ecb4a2fcae660104d2ef7187552a"` [INFO] [stdout] 1511d3a0e89ea6fb669416a53b3da49e1316ecb4a2fcae660104d2ef7187552a [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-1/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/gh/brain-lang/brain:/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.37.0" "test" "--frozen" "--no-run"` [INFO] [stdout] e625ac5a285d3f8a73fe9468aa122106fdb65aa63a824d9c28bcb0ac34e1fd4c [INFO] running `"docker" "start" "-a" "e625ac5a285d3f8a73fe9468aa122106fdb65aa63a824d9c28bcb0ac34e1fd4c"` [INFO] [stderr] Compiling brain v0.1.2 (/opt/crater/workdir) [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/operations/primitives.rs:64:1 [INFO] [stderr] | [INFO] [stderr] 64 | / /// To add a primitive, simply add a field to the following struct [INFO] [stderr] 65 | | /// Everything else will be generated for you [INFO] [stderr] | |_____________________________________________^ [INFO] [stderr] 66 | / impl_primitives! { [INFO] [stderr] 67 | | pub struct Primitives { [INFO] [stderr] 68 | | unit: Option, [INFO] [stderr] 69 | | array: Option, [INFO] [stderr] ... | [INFO] [stderr] 72 | | } [INFO] [stderr] 73 | | } [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/core/primitives/boolean.rs:212:17 [INFO] [stderr] | [INFO] [stderr] 212 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 213 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 214 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 215 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 216 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 217 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 234 | | } [INFO] [stderr] 235 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/core/primitives/boolean.rs:359:17 [INFO] [stderr] | [INFO] [stderr] 359 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 360 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 361 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 362 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 363 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 364 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 378 | | } [INFO] [stderr] 379 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/core/primitives/boolean.rs:513:17 [INFO] [stderr] | [INFO] [stderr] 513 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 514 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 515 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 516 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 517 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 518 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 548 | | }] [INFO] [stderr] 549 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: unused doc comment [INFO] [stderr] --> src/core/primitives/boolean.rs:641:17 [INFO] [stderr] | [INFO] [stderr] 641 | / /// Thanks to certain properties of booleans, we can evaluate certain things during [INFO] [stderr] 642 | | /// compilation and avoid a lot of extra computation. [INFO] [stderr] | |_____________________________________________________________________^ [INFO] [stderr] 643 | / (&ScopeItem::Constant {type_id: const_type, ref bytes}, &ScopeItem::TypedBlock {type_id: other_type, memory}) | [INFO] [stderr] 644 | | (&ScopeItem::TypedBlock {type_id: other_type, memory}, &ScopeItem::Constant {type_id: const_type, ref bytes}) => { [INFO] [stderr] 645 | | debug_assert_eq!(const_type, bool_type); [INFO] [stderr] 646 | | debug_assert_eq!(other_type, bool_type); [INFO] [stderr] ... | [INFO] [stderr] 676 | | }] [INFO] [stderr] 677 | | }, [INFO] [stderr] | |_________________- rustdoc does not generate documentation for match arms [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/operations/scope.rs:81:24 [INFO] [stderr] | [INFO] [stderr] 81 | operations: Rc OperationsResult>, [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&mut ScopeStack, FuncArgs, MemoryBlock) -> OperationsResult` [INFO] [stderr] | [INFO] [stderr] = note: #[warn(bare_trait_objects)] on by default [INFO] [stderr] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 6.93s [INFO] running `"docker" "inspect" "e625ac5a285d3f8a73fe9468aa122106fdb65aa63a824d9c28bcb0ac34e1fd4c"` [INFO] running `"docker" "rm" "-f" "e625ac5a285d3f8a73fe9468aa122106fdb65aa63a824d9c28bcb0ac34e1fd4c"` [INFO] [stdout] e625ac5a285d3f8a73fe9468aa122106fdb65aa63a824d9c28bcb0ac34e1fd4c [INFO] running `"docker" "create" "-v" "/mnt/big/crater/work/local/target-dirs/beta-1.38-1/worker-1/1.37.0:/opt/crater/target:rw,Z" "-v" "/mnt/big/crater/work/ex/beta-1.38-1/sources/1.37.0/gh/brain-lang/brain:/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.37.0" "test" "--frozen"` [INFO] [stdout] 8e7b281196e8ac402dcce935485faddf79e46077d9ae932e723badf0d14635a5 [INFO] running `"docker" "start" "-a" "8e7b281196e8ac402dcce935485faddf79e46077d9ae932e723badf0d14635a5"` [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 0.04s [INFO] [stdout] [INFO] [stderr] Running /opt/crater/target/debug/deps/brain-96c222f88f18bb6b [INFO] [stdout] running 32 tests [INFO] [stdout] test core::primitives::boolean::tests::constants ... ok [INFO] [stdout] test operations::block::tests::nested_scopes ... ignored [INFO] [stdout] test operations::item_type::tests::matches_signature ... ok [INFO] [stdout] test operations::declaration::tests::declaration_only ... ok [INFO] [stdout] test operations::block::tests::empty_block ... ok [INFO] [stdout] test memory::static_allocator::tests::cannot_allocate_default_memory_block ... ok [INFO] [stdout] test core::primitives::u8::tests::defines_primitive ... ok [INFO] [stdout] test memory::static_allocator::tests::allocating_zero_returns_default ... ok [INFO] [stdout] test operations::module::tests::empty_module ... ok [INFO] [stdout] test core::primitives::array::tests::defines_primitive ... ok [INFO] [stdout] test core::primitives::boolean::tests::defines_primitive ... ok [INFO] [stdout] test operations::primitives::tests::can_define_primitives ... ok [INFO] [stdout] test operations::program::tests::empty_program ... ok [INFO] [stdout] test operations::scope::tests::defines_unit_primitive ... ok [INFO] [stdout] test parser::ast::tests::concat_identifiers ... ok [INFO] [stdout] test operations::statement::tests::comment ... ok [INFO] [stdout] test operations::scope::tests::multiple_definitions ... ok [INFO] [stdout] test parser::grammar::tests::empty_program ... ok [INFO] [stdout] test parser::grammar::tests::field_access ... ok [INFO] [stdout] test parser::grammar::tests::binary_operators ... ok [INFO] [stdout] test parser::grammar::tests::conditionals ... ok [INFO] [stdout] test parser::grammar::tests::leading_whitespace ... ok [INFO] [stdout] test parser::grammar::tests::functions_field_access ... ok [INFO] [stdout] test parser::grammar::tests::number ... ok [INFO] [stdout] test parser::grammar::tests::string_literal ... ok [INFO] [stdout] test parser::grammar::tests::numeric_literal ... ok [INFO] [stdout] test parser::grammar::tests::string_literal_escapes ... ok [INFO] [stdout] test operations::primitives::tests::access_without_registration ... ok [INFO] [stdout] test operations::primitives::tests::redefined_primitive ... ok [INFO] [stdout] test operations::primitives::tests::type_collision ... ok [INFO] [stdout] test operations::primitives::tests::redefined_primitive_same_type_id ... ok [INFO] [stdout] test operations::primitives::tests::unknown_primitive ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 31 passed; 0 failed; 1 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Running /opt/crater/target/debug/deps/brain-571cd22e78049252 [INFO] [stdout] running 0 tests [INFO] [stderr] Doc-tests brain [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 0 tests [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out [INFO] [stdout] [INFO] running `"docker" "inspect" "8e7b281196e8ac402dcce935485faddf79e46077d9ae932e723badf0d14635a5"` [INFO] running `"docker" "rm" "-f" "8e7b281196e8ac402dcce935485faddf79e46077d9ae932e723badf0d14635a5"` [INFO] [stdout] 8e7b281196e8ac402dcce935485faddf79e46077d9ae932e723badf0d14635a5