Oct 13 03:53:13.402 INFO testing pipct/bananagrams-host against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 13 03:53:13.403 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,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" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 13 03:53:13.836 INFO blam! 7cfcb44ba6d9fa5aa35dbd4798ccb082e9fd6ba57ce22468add3f7743cfeb8bd Oct 13 03:53:13.838 INFO running `"docker" "start" "-a" "7cfcb44ba6d9fa5aa35dbd4798ccb082e9fd6ba57ce22468add3f7743cfeb8bd"` Oct 13 03:53:15.029 INFO kablam! usermod: no changes Oct 13 03:53:15.086 INFO kablam! Compiling bananagrams-host v0.1.0 (/source) Oct 13 03:53:15.446 INFO kablam! warning: unused import: `std::io::BufReader` Oct 13 03:53:15.446 INFO kablam! --> src/main.rs:6:5 Oct 13 03:53:15.446 INFO kablam! | Oct 13 03:53:15.446 INFO kablam! 6 | use std::io::BufReader; Oct 13 03:53:15.446 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 03:53:15.446 INFO kablam! | Oct 13 03:53:15.446 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 03:53:15.446 INFO kablam! Oct 13 03:53:15.611 INFO kablam! warning: unused variable: `GameState` Oct 13 03:53:15.614 INFO kablam! --> src/main.rs:122:13 Oct 13 03:53:15.615 INFO kablam! | Oct 13 03:53:15.615 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:15.615 INFO kablam! | ^^^^^^^^^ help: consider using `_GameState` instead Oct 13 03:53:15.616 INFO kablam! | Oct 13 03:53:15.616 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 03:53:15.616 INFO kablam! Oct 13 03:53:15.659 INFO kablam! warning: variable does not need to be mutable Oct 13 03:53:15.660 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:15.661 INFO kablam! | Oct 13 03:53:15.661 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:15.661 INFO kablam! | ----^^^^^^^^^ Oct 13 03:53:15.661 INFO kablam! | | Oct 13 03:53:15.661 INFO kablam! | help: remove this `mut` Oct 13 03:53:15.661 INFO kablam! | Oct 13 03:53:15.662 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 03:53:15.662 INFO kablam! Oct 13 03:53:15.662 INFO kablam! warning: variant is never constructed: `ProtocolError` Oct 13 03:53:15.662 INFO kablam! --> src/main.rs:42:5 Oct 13 03:53:15.663 INFO kablam! | Oct 13 03:53:15.663 INFO kablam! 42 | ProtocolError, Oct 13 03:53:15.663 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:15.663 INFO kablam! | Oct 13 03:53:15.664 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 03:53:15.664 INFO kablam! Oct 13 03:53:15.664 INFO kablam! warning: variant is never constructed: `UnexpectedEOF` Oct 13 03:53:15.665 INFO kablam! --> src/main.rs:43:5 Oct 13 03:53:15.665 INFO kablam! | Oct 13 03:53:15.665 INFO kablam! 43 | UnexpectedEOF, Oct 13 03:53:15.666 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:15.666 INFO kablam! Oct 13 03:53:15.666 INFO kablam! warning: variant is never constructed: `LetterError` Oct 13 03:53:15.667 INFO kablam! --> src/main.rs:44:5 Oct 13 03:53:15.667 INFO kablam! | Oct 13 03:53:15.667 INFO kablam! 44 | LetterError Oct 13 03:53:15.667 INFO kablam! | ^^^^^^^^^^^ Oct 13 03:53:15.668 INFO kablam! Oct 13 03:53:15.668 INFO kablam! warning: function `readDigit` should have a snake case name such as `read_digit` Oct 13 03:53:15.668 INFO kablam! --> src/main.rs:49:1 Oct 13 03:53:15.669 INFO kablam! | Oct 13 03:53:15.669 INFO kablam! 49 | / fn readDigit(chr: u8) -> u8 { Oct 13 03:53:15.669 INFO kablam! 50 | | if chr < 0x30 || 0x39 < chr { Oct 13 03:53:15.669 INFO kablam! 51 | | panic!("not a digit: {}", chr); Oct 13 03:53:15.670 INFO kablam! 52 | | } Oct 13 03:53:15.670 INFO kablam! 53 | | Oct 13 03:53:15.671 INFO kablam! 54 | | chr - 0x30 Oct 13 03:53:15.671 INFO kablam! 55 | | } Oct 13 03:53:15.672 INFO kablam! | |_^ Oct 13 03:53:15.672 INFO kablam! | Oct 13 03:53:15.672 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 13 03:53:15.673 INFO kablam! Oct 13 03:53:15.673 INFO kablam! warning: function `readInt` should have a snake case name such as `read_int` Oct 13 03:53:15.673 INFO kablam! --> src/main.rs:57:1 Oct 13 03:53:15.674 INFO kablam! | Oct 13 03:53:15.674 INFO kablam! 57 | / fn readInt(seq: T) -> u64 where T: IntoIterator { Oct 13 03:53:15.674 INFO kablam! 58 | | seq.into_iter().fold(0, |acc, x| (acc*10) + readDigit(x) as u64) Oct 13 03:53:15.674 INFO kablam! 59 | | } Oct 13 03:53:15.675 INFO kablam! | |_^ Oct 13 03:53:15.675 INFO kablam! Oct 13 03:53:15.675 INFO kablam! warning: variable `GameState` should have a snake case name such as `game_state` Oct 13 03:53:15.676 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:15.676 INFO kablam! | Oct 13 03:53:15.676 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:15.677 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:15.677 INFO kablam! Oct 13 03:53:16.750 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.69s Oct 13 03:53:16.752 INFO kablam! su: No module specific data is present Oct 13 03:53:17.824 INFO running `"docker" "rm" "-f" "7cfcb44ba6d9fa5aa35dbd4798ccb082e9fd6ba57ce22468add3f7743cfeb8bd"` Oct 13 03:53:18.191 INFO blam! 7cfcb44ba6d9fa5aa35dbd4798ccb082e9fd6ba57ce22468add3f7743cfeb8bd Oct 13 03:53:18.194 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,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" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 13 03:53:18.556 INFO blam! 685d6c634f64723f2ad485f083e4ef7dbf6bbace156faab95daaacfedacb1af8 Oct 13 03:53:18.557 INFO running `"docker" "start" "-a" "685d6c634f64723f2ad485f083e4ef7dbf6bbace156faab95daaacfedacb1af8"` Oct 13 03:53:19.501 INFO kablam! usermod: no changes Oct 13 03:53:19.548 INFO kablam! Compiling bananagrams-host v0.1.0 (/source) Oct 13 03:53:19.860 INFO kablam! warning: unused import: `std::io::BufReader` Oct 13 03:53:19.860 INFO kablam! --> src/main.rs:6:5 Oct 13 03:53:19.860 INFO kablam! | Oct 13 03:53:19.861 INFO kablam! 6 | use std::io::BufReader; Oct 13 03:53:19.861 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 03:53:19.861 INFO kablam! | Oct 13 03:53:19.862 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 03:53:19.862 INFO kablam! Oct 13 03:53:20.007 INFO kablam! warning: unused variable: `GameState` Oct 13 03:53:20.007 INFO kablam! --> src/main.rs:122:13 Oct 13 03:53:20.007 INFO kablam! | Oct 13 03:53:20.007 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:20.007 INFO kablam! | ^^^^^^^^^ help: consider using `_GameState` instead Oct 13 03:53:20.007 INFO kablam! | Oct 13 03:53:20.008 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 03:53:20.008 INFO kablam! Oct 13 03:53:20.043 INFO kablam! warning: variable does not need to be mutable Oct 13 03:53:20.043 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:20.043 INFO kablam! | Oct 13 03:53:20.043 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:20.043 INFO kablam! | ----^^^^^^^^^ Oct 13 03:53:20.043 INFO kablam! | | Oct 13 03:53:20.043 INFO kablam! | help: remove this `mut` Oct 13 03:53:20.043 INFO kablam! | Oct 13 03:53:20.043 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 03:53:20.043 INFO kablam! Oct 13 03:53:20.043 INFO kablam! warning: variant is never constructed: `ProtocolError` Oct 13 03:53:20.043 INFO kablam! --> src/main.rs:42:5 Oct 13 03:53:20.043 INFO kablam! | Oct 13 03:53:20.043 INFO kablam! 42 | ProtocolError, Oct 13 03:53:20.043 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:20.043 INFO kablam! | Oct 13 03:53:20.043 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 03:53:20.043 INFO kablam! Oct 13 03:53:20.043 INFO kablam! warning: variant is never constructed: `UnexpectedEOF` Oct 13 03:53:20.043 INFO kablam! --> src/main.rs:43:5 Oct 13 03:53:20.043 INFO kablam! | Oct 13 03:53:20.043 INFO kablam! 43 | UnexpectedEOF, Oct 13 03:53:20.043 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:20.043 INFO kablam! Oct 13 03:53:20.043 INFO kablam! warning: variant is never constructed: `LetterError` Oct 13 03:53:20.043 INFO kablam! --> src/main.rs:44:5 Oct 13 03:53:20.043 INFO kablam! | Oct 13 03:53:20.043 INFO kablam! 44 | LetterError Oct 13 03:53:20.043 INFO kablam! | ^^^^^^^^^^^ Oct 13 03:53:20.043 INFO kablam! Oct 13 03:53:20.051 INFO kablam! warning: function `readDigit` should have a snake case name such as `read_digit` Oct 13 03:53:20.051 INFO kablam! --> src/main.rs:49:1 Oct 13 03:53:20.051 INFO kablam! | Oct 13 03:53:20.051 INFO kablam! 49 | / fn readDigit(chr: u8) -> u8 { Oct 13 03:53:20.051 INFO kablam! 50 | | if chr < 0x30 || 0x39 < chr { Oct 13 03:53:20.051 INFO kablam! 51 | | panic!("not a digit: {}", chr); Oct 13 03:53:20.051 INFO kablam! 52 | | } Oct 13 03:53:20.051 INFO kablam! 53 | | Oct 13 03:53:20.051 INFO kablam! 54 | | chr - 0x30 Oct 13 03:53:20.051 INFO kablam! 55 | | } Oct 13 03:53:20.051 INFO kablam! | |_^ Oct 13 03:53:20.051 INFO kablam! | Oct 13 03:53:20.051 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 13 03:53:20.051 INFO kablam! Oct 13 03:53:20.051 INFO kablam! warning: function `readInt` should have a snake case name such as `read_int` Oct 13 03:53:20.051 INFO kablam! --> src/main.rs:57:1 Oct 13 03:53:20.051 INFO kablam! | Oct 13 03:53:20.051 INFO kablam! 57 | / fn readInt(seq: T) -> u64 where T: IntoIterator { Oct 13 03:53:20.051 INFO kablam! 58 | | seq.into_iter().fold(0, |acc, x| (acc*10) + readDigit(x) as u64) Oct 13 03:53:20.051 INFO kablam! 59 | | } Oct 13 03:53:20.051 INFO kablam! | |_^ Oct 13 03:53:20.051 INFO kablam! Oct 13 03:53:20.051 INFO kablam! warning: variable `GameState` should have a snake case name such as `game_state` Oct 13 03:53:20.051 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:20.051 INFO kablam! | Oct 13 03:53:20.051 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:20.051 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:20.051 INFO kablam! Oct 13 03:53:20.618 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.08s Oct 13 03:53:20.623 INFO kablam! su: No module specific data is present Oct 13 03:53:21.089 INFO running `"docker" "rm" "-f" "685d6c634f64723f2ad485f083e4ef7dbf6bbace156faab95daaacfedacb1af8"` Oct 13 03:53:21.319 INFO blam! 685d6c634f64723f2ad485f083e4ef7dbf6bbace156faab95daaacfedacb1af8 Oct 13 03:53:21.323 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,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" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 13 03:53:21.677 INFO blam! 2570337cb9610e09c2317eafedb6fe00b19fc395ba7d398e0483bac5d6211828 Oct 13 03:53:21.678 INFO running `"docker" "start" "-a" "2570337cb9610e09c2317eafedb6fe00b19fc395ba7d398e0483bac5d6211828"` Oct 13 03:53:22.715 INFO kablam! usermod: no changes Oct 13 03:53:22.751 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 13 03:53:22.759 INFO kablam! Running /target/debug/deps/bananagrams_host-116c45d9fb89f5d1 Oct 13 03:53:22.759 INFO kablam! su: No module specific data is present Oct 13 03:53:22.760 INFO blam! Oct 13 03:53:22.760 INFO blam! running 0 tests Oct 13 03:53:22.760 INFO blam! Oct 13 03:53:22.760 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 03:53:22.760 INFO blam! Oct 13 03:53:23.524 INFO running `"docker" "rm" "-f" "2570337cb9610e09c2317eafedb6fe00b19fc395ba7d398e0483bac5d6211828"` Oct 13 03:53:23.779 INFO blam! 2570337cb9610e09c2317eafedb6fe00b19fc395ba7d398e0483bac5d6211828