Oct 11 00:01:41.949 INFO testing dougli1sqrd/rustship against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling Oct 11 00:01:41.949 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen Oct 11 00:01:41.949 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-5/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 11 00:01:42.132 INFO blam! 04c83a2fd21789e54469204f8ded3ad8715fffe91fb08b0ab4cfe2a6ee572799 Oct 11 00:01:42.140 INFO running `"docker" "start" "-a" "04c83a2fd21789e54469204f8ded3ad8715fffe91fb08b0ab4cfe2a6ee572799"` Oct 11 00:01:42.984 INFO kablam! usermod: no changes Oct 11 00:01:43.028 INFO kablam! Compiling rustship v0.1.0 (/source) Oct 11 00:01:43.744 INFO kablam! warning: unused variable: `coordinate` Oct 11 00:01:43.744 INFO kablam! --> src/board/board.rs:95:32 Oct 11 00:01:43.744 INFO kablam! | Oct 11 00:01:43.744 INFO kablam! 95 | fn resolve_hit(& mut self, coordinate: Coordinate) { Oct 11 00:01:43.744 INFO kablam! | ^^^^^^^^^^ help: consider using `_coordinate` instead Oct 11 00:01:43.744 INFO kablam! | Oct 11 00:01:43.744 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 11 00:01:43.744 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: variant is never constructed: `Horizontal` Oct 11 00:01:43.769 INFO kablam! --> src/board/orientation.rs:9:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 9 | Horizontal, Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! = note: #[warn(dead_code)] on by default Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: variant is never constructed: `Vertical` Oct 11 00:01:43.769 INFO kablam! --> src/board/orientation.rs:10:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 10 | Vertical Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `rotate` Oct 11 00:01:43.769 INFO kablam! --> src/board/orientation.rs:20:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 20 | pub fn rotate(self) -> Orientation { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `place` Oct 11 00:01:43.769 INFO kablam! --> src/board/board.rs:26:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 26 | pub fn place(& mut self, ship_type: ShipType, position: Coordinate, direction: Orientation) -> Result<(), Vec> { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `place_ship` Oct 11 00:01:43.769 INFO kablam! --> src/board/board.rs:36:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 36 | pub fn place_ship(& mut self, ship: Ship<'a>) -> Result<(), Vec> { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `receive_shot` Oct 11 00:01:43.769 INFO kablam! --> src/board/board.rs:52:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 52 | pub fn receive_shot(& mut self, coordinate: Coordinate) -> HitStatus { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `update_grid` Oct 11 00:01:43.769 INFO kablam! --> src/board/board.rs:63:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 63 | fn update_grid(& mut self, coordinates: &[Coordinate], ship: Ship<'a>) { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: enum is never used: `ShipType` Oct 11 00:01:43.769 INFO kablam! --> src/pieces/ship.rs:8:1 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 8 | pub enum ShipType { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: field is never used: `symbol` Oct 11 00:01:43.769 INFO kablam! --> src/pieces/ship.rs:26:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 26 | symbol: char, Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: field is never used: `name` Oct 11 00:01:43.769 INFO kablam! --> src/pieces/ship.rs:27:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 27 | name: & 'a str, Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `new` Oct 11 00:01:43.769 INFO kablam! --> src/pieces/ship.rs:32:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 32 | pub fn new(ship_type: ShipType) -> ShipTypeData<'a> { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `new` Oct 11 00:01:43.769 INFO kablam! --> src/pieces/ship.rs:64:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 64 | pub fn new(ship_type: ShipType) -> Ship<'a> { Oct 11 00:01:43.769 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.769 INFO kablam! Oct 11 00:01:43.769 INFO kablam! warning: method is never used: `symbol` Oct 11 00:01:43.769 INFO kablam! --> src/pieces/ship.rs:83:5 Oct 11 00:01:43.769 INFO kablam! | Oct 11 00:01:43.769 INFO kablam! 83 | pub fn symbol(&self) -> char { Oct 11 00:01:43.770 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.770 INFO kablam! Oct 11 00:01:43.770 INFO kablam! warning: method is never used: `rotate` Oct 11 00:01:43.770 INFO kablam! --> src/pieces/ship.rs:87:5 Oct 11 00:01:43.770 INFO kablam! | Oct 11 00:01:43.770 INFO kablam! 87 | pub fn rotate(& mut self) -> & Ship { Oct 11 00:01:43.770 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.770 INFO kablam! Oct 11 00:01:43.770 INFO kablam! warning: method is never used: `change_pos` Oct 11 00:01:43.770 INFO kablam! --> src/pieces/ship.rs:92:5 Oct 11 00:01:43.770 INFO kablam! | Oct 11 00:01:43.770 INFO kablam! 92 | pub fn change_pos(& mut self, position: Coordinate) -> & Ship { Oct 11 00:01:43.770 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.770 INFO kablam! Oct 11 00:01:43.770 INFO kablam! warning: method is never used: `get_position` Oct 11 00:01:43.770 INFO kablam! --> src/pieces/ship.rs:97:5 Oct 11 00:01:43.770 INFO kablam! | Oct 11 00:01:43.770 INFO kablam! 97 | pub fn get_position(&self) -> Coordinate { Oct 11 00:01:43.770 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:01:43.770 INFO kablam! Oct 11 00:01:44.579 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.57s Oct 11 00:01:44.585 INFO kablam! su: No module specific data is present Oct 11 00:01:44.876 INFO running `"docker" "rm" "-f" "04c83a2fd21789e54469204f8ded3ad8715fffe91fb08b0ab4cfe2a6ee572799"` Oct 11 00:01:44.956 INFO blam! 04c83a2fd21789e54469204f8ded3ad8715fffe91fb08b0ab4cfe2a6ee572799 Oct 11 00:01:44.957 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run Oct 11 00:01:44.957 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-5/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 11 00:01:45.157 INFO blam! 623706b66149de3dffaa1b54cf899148b3c49ea3c31ee2add72f1280ea7e3ea7 Oct 11 00:01:45.159 INFO running `"docker" "start" "-a" "623706b66149de3dffaa1b54cf899148b3c49ea3c31ee2add72f1280ea7e3ea7"` Oct 11 00:01:45.587 INFO kablam! usermod: no changes Oct 11 00:01:45.619 INFO kablam! Compiling rustship v0.1.0 (/source) Oct 11 00:01:46.524 INFO kablam! warning: unused variable: `coordinate` Oct 11 00:01:46.524 INFO kablam! --> src/board/board.rs:95:32 Oct 11 00:01:46.524 INFO kablam! | Oct 11 00:01:46.524 INFO kablam! 95 | fn resolve_hit(& mut self, coordinate: Coordinate) { Oct 11 00:01:46.524 INFO kablam! | ^^^^^^^^^^ help: consider using `_coordinate` instead Oct 11 00:01:46.524 INFO kablam! | Oct 11 00:01:46.524 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 11 00:01:46.524 INFO kablam! Oct 11 00:01:46.598 INFO kablam! warning: field is never used: `name` Oct 11 00:01:46.598 INFO kablam! --> src/pieces/ship.rs:27:5 Oct 11 00:01:46.598 INFO kablam! | Oct 11 00:01:46.598 INFO kablam! 27 | name: & 'a str, Oct 11 00:01:46.598 INFO kablam! | ^^^^^^^^^^^^^^ Oct 11 00:01:46.598 INFO kablam! | Oct 11 00:01:46.598 INFO kablam! = note: #[warn(dead_code)] on by default Oct 11 00:01:46.598 INFO kablam! Oct 11 00:01:47.412 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.80s Oct 11 00:01:47.414 INFO kablam! su: No module specific data is present Oct 11 00:01:47.678 INFO running `"docker" "rm" "-f" "623706b66149de3dffaa1b54cf899148b3c49ea3c31ee2add72f1280ea7e3ea7"` Oct 11 00:01:47.764 INFO blam! 623706b66149de3dffaa1b54cf899148b3c49ea3c31ee2add72f1280ea7e3ea7 Oct 11 00:01:47.765 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen Oct 11 00:01:47.765 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-5/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-5/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 11 00:01:47.904 INFO blam! e72de3515bc9c1a1d93e533a2e5e40269ae28fb77391943b5aecc11b926e0b86 Oct 11 00:01:47.907 INFO running `"docker" "start" "-a" "e72de3515bc9c1a1d93e533a2e5e40269ae28fb77391943b5aecc11b926e0b86"` Oct 11 00:01:48.309 INFO kablam! usermod: no changes Oct 11 00:01:48.339 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.00s Oct 11 00:01:48.340 INFO kablam! Running /target/debug/deps/rustship-6102aa11eb1432ec Oct 11 00:01:48.344 INFO blam! Oct 11 00:01:48.344 INFO blam! running 32 tests Oct 11 00:01:48.344 INFO blam! test board::tests::test_new_board ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_coordinate_outside_grid ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_coordinate_new ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_coordinate_displace_vertical ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_coordinate_displace_horizontal ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_board_receive_shot_hit ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_board_place ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_orientation_rotate ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_place_ship_board_string ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_place_ship_fail ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_place_ship_fail_result_contents ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_place_ship_success ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_ship_inside_board ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_ship_outside_board ... ok Oct 11 00:01:48.344 INFO blam! test board::tests::test_ship_vertical_inside ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_get_out_of_bounds ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_is_square_len ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_len ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_new ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_new_filled_with_dots ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_normalize ... ok Oct 11 00:01:48.344 INFO blam! test grid::tests::test_grid_place_item ... ok Oct 11 00:01:48.345 INFO blam! test grid::tests::test_grid_place_out_of_bounds ... ok Oct 11 00:01:48.345 INFO blam! test grid::tests::test_grid_to_string ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_ship_change_pos ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_ship_generates_coordinates ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_ship_hits_when_inside_coordinates ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_ship_misses_when_outside_coordinates ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_ship_new ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_ship_symbol ... ok Oct 11 00:01:48.345 INFO blam! test pieces::tests::test_rotate_ship ... ok Oct 11 00:01:48.352 INFO blam! test board::tests::test_coordinate_inside_grid ... ok Oct 11 00:01:48.352 INFO blam! Oct 11 00:01:48.352 INFO blam! test result: ok. 32 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 11 00:01:48.352 INFO blam! Oct 11 00:01:48.360 INFO kablam! su: No module specific data is present Oct 11 00:01:48.944 INFO running `"docker" "rm" "-f" "e72de3515bc9c1a1d93e533a2e5e40269ae28fb77391943b5aecc11b926e0b86"` Oct 11 00:01:49.120 INFO blam! e72de3515bc9c1a1d93e533a2e5e40269ae28fb77391943b5aecc11b926e0b86