Oct 13 03:53:11.150 INFO testing pipct/bananagrams-host against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 13 03:53:11.152 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/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 +40d4795669493f1965de7c44029c69552134fe1f-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:11.549 INFO blam! b176457b67bb2bf7d64235c3bd3cf2d51608f06d7dd41a2995816aff88e1b8ff Oct 13 03:53:11.555 INFO running `"docker" "start" "-a" "b176457b67bb2bf7d64235c3bd3cf2d51608f06d7dd41a2995816aff88e1b8ff"` Oct 13 03:53:12.610 INFO kablam! usermod: no changes Oct 13 03:53:12.679 INFO kablam! Compiling bananagrams-host v0.1.0 (/source) Oct 13 03:53:13.015 INFO kablam! warning: unused import: `std::io::BufReader` Oct 13 03:53:13.015 INFO kablam! --> src/main.rs:6:5 Oct 13 03:53:13.015 INFO kablam! | Oct 13 03:53:13.015 INFO kablam! 6 | use std::io::BufReader; Oct 13 03:53:13.015 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 03:53:13.015 INFO kablam! | Oct 13 03:53:13.015 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 03:53:13.015 INFO kablam! Oct 13 03:53:13.146 INFO kablam! warning: unused variable: `GameState` Oct 13 03:53:13.146 INFO kablam! --> src/main.rs:122:13 Oct 13 03:53:13.146 INFO kablam! | Oct 13 03:53:13.146 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:13.147 INFO kablam! | ^^^^^^^^^ help: consider using `_GameState` instead Oct 13 03:53:13.147 INFO kablam! | Oct 13 03:53:13.167 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 03:53:13.168 INFO kablam! Oct 13 03:53:13.183 INFO kablam! warning: variable does not need to be mutable Oct 13 03:53:13.183 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:13.184 INFO kablam! | Oct 13 03:53:13.184 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:13.184 INFO kablam! | ----^^^^^^^^^ Oct 13 03:53:13.184 INFO kablam! | | Oct 13 03:53:13.185 INFO kablam! | help: remove this `mut` Oct 13 03:53:13.185 INFO kablam! | Oct 13 03:53:13.185 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 03:53:13.185 INFO kablam! Oct 13 03:53:13.186 INFO kablam! warning: variant is never constructed: `ProtocolError` Oct 13 03:53:13.186 INFO kablam! --> src/main.rs:42:5 Oct 13 03:53:13.186 INFO kablam! | Oct 13 03:53:13.187 INFO kablam! 42 | ProtocolError, Oct 13 03:53:13.187 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:13.187 INFO kablam! | Oct 13 03:53:13.187 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 03:53:13.188 INFO kablam! Oct 13 03:53:13.188 INFO kablam! warning: variant is never constructed: `UnexpectedEOF` Oct 13 03:53:13.188 INFO kablam! --> src/main.rs:43:5 Oct 13 03:53:13.188 INFO kablam! | Oct 13 03:53:13.189 INFO kablam! 43 | UnexpectedEOF, Oct 13 03:53:13.189 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:13.189 INFO kablam! Oct 13 03:53:13.189 INFO kablam! warning: variant is never constructed: `LetterError` Oct 13 03:53:13.190 INFO kablam! --> src/main.rs:44:5 Oct 13 03:53:13.190 INFO kablam! | Oct 13 03:53:13.190 INFO kablam! 44 | LetterError Oct 13 03:53:13.191 INFO kablam! | ^^^^^^^^^^^ Oct 13 03:53:13.191 INFO kablam! Oct 13 03:53:13.191 INFO kablam! warning: function `readDigit` should have a snake case name such as `read_digit` Oct 13 03:53:13.191 INFO kablam! --> src/main.rs:49:1 Oct 13 03:53:13.192 INFO kablam! | Oct 13 03:53:13.192 INFO kablam! 49 | / fn readDigit(chr: u8) -> u8 { Oct 13 03:53:13.192 INFO kablam! 50 | | if chr < 0x30 || 0x39 < chr { Oct 13 03:53:13.192 INFO kablam! 51 | | panic!("not a digit: {}", chr); Oct 13 03:53:13.193 INFO kablam! 52 | | } Oct 13 03:53:13.193 INFO kablam! 53 | | Oct 13 03:53:13.193 INFO kablam! 54 | | chr - 0x30 Oct 13 03:53:13.193 INFO kablam! 55 | | } Oct 13 03:53:13.194 INFO kablam! | |_^ Oct 13 03:53:13.194 INFO kablam! | Oct 13 03:53:13.194 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 13 03:53:13.195 INFO kablam! Oct 13 03:53:13.195 INFO kablam! warning: function `readInt` should have a snake case name such as `read_int` Oct 13 03:53:13.195 INFO kablam! --> src/main.rs:57:1 Oct 13 03:53:13.195 INFO kablam! | Oct 13 03:53:13.196 INFO kablam! 57 | / fn readInt(seq: T) -> u64 where T: IntoIterator { Oct 13 03:53:13.196 INFO kablam! 58 | | seq.into_iter().fold(0, |acc, x| (acc*10) + readDigit(x) as u64) Oct 13 03:53:13.196 INFO kablam! 59 | | } Oct 13 03:53:13.197 INFO kablam! | |_^ Oct 13 03:53:13.197 INFO kablam! Oct 13 03:53:13.197 INFO kablam! warning: variable `GameState` should have a snake case name such as `game_state` Oct 13 03:53:13.197 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:13.198 INFO kablam! | Oct 13 03:53:13.198 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:13.198 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:13.198 INFO kablam! Oct 13 03:53:14.483 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.84s Oct 13 03:53:14.487 INFO kablam! su: No module specific data is present Oct 13 03:53:15.344 INFO running `"docker" "rm" "-f" "b176457b67bb2bf7d64235c3bd3cf2d51608f06d7dd41a2995816aff88e1b8ff"` Oct 13 03:53:15.678 INFO blam! b176457b67bb2bf7d64235c3bd3cf2d51608f06d7dd41a2995816aff88e1b8ff Oct 13 03:53:15.683 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/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 +40d4795669493f1965de7c44029c69552134fe1f-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:16.042 INFO blam! 2ed42ca4c39d7ae5b4f91dc4cadf13643a0fb9f647e3f4050eff8f58c71fb011 Oct 13 03:53:16.043 INFO running `"docker" "start" "-a" "2ed42ca4c39d7ae5b4f91dc4cadf13643a0fb9f647e3f4050eff8f58c71fb011"` Oct 13 03:53:17.270 INFO kablam! usermod: no changes Oct 13 03:53:17.315 INFO kablam! Compiling bananagrams-host v0.1.0 (/source) Oct 13 03:53:17.602 INFO kablam! warning: unused import: `std::io::BufReader` Oct 13 03:53:17.602 INFO kablam! --> src/main.rs:6:5 Oct 13 03:53:17.602 INFO kablam! | Oct 13 03:53:17.602 INFO kablam! 6 | use std::io::BufReader; Oct 13 03:53:17.602 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 03:53:17.602 INFO kablam! | Oct 13 03:53:17.602 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 03:53:17.602 INFO kablam! Oct 13 03:53:17.723 INFO kablam! warning: unused variable: `GameState` Oct 13 03:53:17.723 INFO kablam! --> src/main.rs:122:13 Oct 13 03:53:17.724 INFO kablam! | Oct 13 03:53:17.724 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:17.724 INFO kablam! | ^^^^^^^^^ help: consider using `_GameState` instead Oct 13 03:53:17.724 INFO kablam! | Oct 13 03:53:17.724 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 03:53:17.724 INFO kablam! Oct 13 03:53:17.749 INFO kablam! warning: variable does not need to be mutable Oct 13 03:53:17.749 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:17.749 INFO kablam! | Oct 13 03:53:17.750 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:17.750 INFO kablam! | ----^^^^^^^^^ Oct 13 03:53:17.750 INFO kablam! | | Oct 13 03:53:17.750 INFO kablam! | help: remove this `mut` Oct 13 03:53:17.750 INFO kablam! | Oct 13 03:53:17.750 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 03:53:17.750 INFO kablam! Oct 13 03:53:17.751 INFO kablam! warning: variant is never constructed: `ProtocolError` Oct 13 03:53:17.751 INFO kablam! --> src/main.rs:42:5 Oct 13 03:53:17.751 INFO kablam! | Oct 13 03:53:17.751 INFO kablam! 42 | ProtocolError, Oct 13 03:53:17.751 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:17.751 INFO kablam! | Oct 13 03:53:17.751 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 03:53:17.751 INFO kablam! Oct 13 03:53:17.751 INFO kablam! warning: variant is never constructed: `UnexpectedEOF` Oct 13 03:53:17.751 INFO kablam! --> src/main.rs:43:5 Oct 13 03:53:17.751 INFO kablam! | Oct 13 03:53:17.751 INFO kablam! 43 | UnexpectedEOF, Oct 13 03:53:17.751 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:17.754 INFO kablam! Oct 13 03:53:17.754 INFO kablam! warning: variant is never constructed: `LetterError` Oct 13 03:53:17.754 INFO kablam! --> src/main.rs:44:5 Oct 13 03:53:17.754 INFO kablam! | Oct 13 03:53:17.754 INFO kablam! 44 | LetterError Oct 13 03:53:17.754 INFO kablam! | ^^^^^^^^^^^ Oct 13 03:53:17.754 INFO kablam! Oct 13 03:53:17.754 INFO kablam! warning: function `readDigit` should have a snake case name such as `read_digit` Oct 13 03:53:17.754 INFO kablam! --> src/main.rs:49:1 Oct 13 03:53:17.754 INFO kablam! | Oct 13 03:53:17.754 INFO kablam! 49 | / fn readDigit(chr: u8) -> u8 { Oct 13 03:53:17.754 INFO kablam! 50 | | if chr < 0x30 || 0x39 < chr { Oct 13 03:53:17.754 INFO kablam! 51 | | panic!("not a digit: {}", chr); Oct 13 03:53:17.754 INFO kablam! 52 | | } Oct 13 03:53:17.754 INFO kablam! 53 | | Oct 13 03:53:17.754 INFO kablam! 54 | | chr - 0x30 Oct 13 03:53:17.754 INFO kablam! 55 | | } Oct 13 03:53:17.754 INFO kablam! | |_^ Oct 13 03:53:17.754 INFO kablam! | Oct 13 03:53:17.754 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 13 03:53:17.754 INFO kablam! Oct 13 03:53:17.754 INFO kablam! warning: function `readInt` should have a snake case name such as `read_int` Oct 13 03:53:17.754 INFO kablam! --> src/main.rs:57:1 Oct 13 03:53:17.754 INFO kablam! | Oct 13 03:53:17.754 INFO kablam! 57 | / fn readInt(seq: T) -> u64 where T: IntoIterator { Oct 13 03:53:17.754 INFO kablam! 58 | | seq.into_iter().fold(0, |acc, x| (acc*10) + readDigit(x) as u64) Oct 13 03:53:17.754 INFO kablam! 59 | | } Oct 13 03:53:17.754 INFO kablam! | |_^ Oct 13 03:53:17.754 INFO kablam! Oct 13 03:53:17.755 INFO kablam! warning: variable `GameState` should have a snake case name such as `game_state` Oct 13 03:53:17.755 INFO kablam! --> src/main.rs:122:9 Oct 13 03:53:17.755 INFO kablam! | Oct 13 03:53:17.755 INFO kablam! 122 | let mut GameState = GameState::Waiting(vec![false; 5]); Oct 13 03:53:17.755 INFO kablam! | ^^^^^^^^^^^^^ Oct 13 03:53:17.755 INFO kablam! Oct 13 03:53:18.411 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.11s Oct 13 03:53:18.419 INFO kablam! su: No module specific data is present Oct 13 03:53:18.949 INFO running `"docker" "rm" "-f" "2ed42ca4c39d7ae5b4f91dc4cadf13643a0fb9f647e3f4050eff8f58c71fb011"` Oct 13 03:53:19.166 INFO blam! 2ed42ca4c39d7ae5b4f91dc4cadf13643a0fb9f647e3f4050eff8f58c71fb011 Oct 13 03:53:19.176 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling-1/try#40d4795669493f1965de7c44029c69552134fe1f:/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 +40d4795669493f1965de7c44029c69552134fe1f-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:19.520 INFO blam! be72006a0fad58df500197e0aebadbb695d6c6675f34eee418807b6352c263b4 Oct 13 03:53:19.522 INFO running `"docker" "start" "-a" "be72006a0fad58df500197e0aebadbb695d6c6675f34eee418807b6352c263b4"` Oct 13 03:53:20.638 INFO kablam! usermod: no changes Oct 13 03:53:20.664 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 13 03:53:20.665 INFO kablam! Running /target/debug/deps/bananagrams_host-1d9f96c14c21d8d8 Oct 13 03:53:20.666 INFO blam! Oct 13 03:53:20.666 INFO blam! running 0 tests Oct 13 03:53:20.666 INFO blam! Oct 13 03:53:20.666 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 03:53:20.666 INFO blam! Oct 13 03:53:20.671 INFO kablam! su: No module specific data is present Oct 13 03:53:21.208 INFO running `"docker" "rm" "-f" "be72006a0fad58df500197e0aebadbb695d6c6675f34eee418807b6352c263b4"` Oct 13 03:53:21.451 INFO blam! be72006a0fad58df500197e0aebadbb695d6c6675f34eee418807b6352c263b4