Oct 15 10:30:24.481 INFO testing Gstayton/IslaBot against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 15 10:30:24.481 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/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 15 10:30:24.656 INFO blam! 2d8fed337beee64911570a221270497558a7faf4dcbe035727fb829dc9b5fede Oct 15 10:30:24.658 INFO running `"docker" "start" "-a" "2d8fed337beee64911570a221270497558a7faf4dcbe035727fb829dc9b5fede"` Oct 15 10:30:25.057 INFO kablam! usermod: no changes Oct 15 10:30:25.092 INFO kablam! Compiling isla_bot v0.1.0 (/source) Oct 15 10:30:25.391 INFO kablam! warning: unused import: `ToSocketAddrs` Oct 15 10:30:25.391 INFO kablam! --> src/main.rs:3:27 Oct 15 10:30:25.391 INFO kablam! | Oct 15 10:30:25.391 INFO kablam! 3 | use std::net::{TcpStream, ToSocketAddrs}; Oct 15 10:30:25.391 INFO kablam! | ^^^^^^^^^^^^^ Oct 15 10:30:25.391 INFO kablam! | Oct 15 10:30:25.391 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 10:30:25.391 INFO kablam! Oct 15 10:30:25.391 INFO kablam! warning: unused import: `std::str::FromStr` Oct 15 10:30:25.391 INFO kablam! --> src/main.rs:6:5 Oct 15 10:30:25.391 INFO kablam! | Oct 15 10:30:25.391 INFO kablam! 6 | use std::str::FromStr; Oct 15 10:30:25.391 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 15 10:30:25.391 INFO kablam! Oct 15 10:30:25.391 INFO kablam! warning: unused import: `std::vec` Oct 15 10:30:25.391 INFO kablam! --> src/irc/message.rs:1:5 Oct 15 10:30:25.391 INFO kablam! | Oct 15 10:30:25.391 INFO kablam! 1 | use std::vec; Oct 15 10:30:25.391 INFO kablam! | ^^^^^^^^ Oct 15 10:30:25.391 INFO kablam! Oct 15 10:30:25.447 INFO kablam! warning: unused variable: `bufw` Oct 15 10:30:25.447 INFO kablam! --> src/main.rs:32:17 Oct 15 10:30:25.447 INFO kablam! | Oct 15 10:30:25.447 INFO kablam! 32 | let mut bufw = BufWriter::new(stream.try_clone().unwrap()); Oct 15 10:30:25.447 INFO kablam! | ^^^^ help: consider using `_bufw` instead Oct 15 10:30:25.447 INFO kablam! | Oct 15 10:30:25.447 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 10:30:25.447 INFO kablam! Oct 15 10:30:25.449 INFO kablam! warning: unused variable: `e` Oct 15 10:30:25.449 INFO kablam! --> src/irc/config.rs:24:17 Oct 15 10:30:25.449 INFO kablam! | Oct 15 10:30:25.449 INFO kablam! 24 | Err(e) => None, Oct 15 10:30:25.449 INFO kablam! | ^ help: consider using `_e` instead Oct 15 10:30:25.449 INFO kablam! Oct 15 10:30:25.464 INFO kablam! warning: variable does not need to be mutable Oct 15 10:30:25.464 INFO kablam! --> src/main.rs:32:13 Oct 15 10:30:25.464 INFO kablam! | Oct 15 10:30:25.464 INFO kablam! 32 | let mut bufw = BufWriter::new(stream.try_clone().unwrap()); Oct 15 10:30:25.464 INFO kablam! | ----^^^^ Oct 15 10:30:25.464 INFO kablam! | | Oct 15 10:30:25.464 INFO kablam! | help: remove this `mut` Oct 15 10:30:25.464 INFO kablam! | Oct 15 10:30:25.464 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 15 10:30:25.464 INFO kablam! Oct 15 10:30:25.472 INFO kablam! warning: variable does not need to be mutable Oct 15 10:30:25.472 INFO kablam! --> src/irc/message.rs:60:13 Oct 15 10:30:25.472 INFO kablam! | Oct 15 10:30:25.472 INFO kablam! 60 | let mut args: Vec<&str> = s.splitn(14, ' ').filter(|s| !s.is_empty()).collect(); Oct 15 10:30:25.472 INFO kablam! | ----^^^^ Oct 15 10:30:25.472 INFO kablam! | | Oct 15 10:30:25.472 INFO kablam! | help: remove this `mut` Oct 15 10:30:25.472 INFO kablam! Oct 15 10:30:25.473 INFO kablam! warning: method `FromStr` should have a snake case name such as `from_str` Oct 15 10:30:25.473 INFO kablam! --> src/irc/message.rs:29:5 Oct 15 10:30:25.473 INFO kablam! | Oct 15 10:30:25.473 INFO kablam! 29 | / pub fn FromStr(line: &str) -> Result { Oct 15 10:30:25.473 INFO kablam! 30 | | let mut s: &str = line; Oct 15 10:30:25.473 INFO kablam! 31 | | let nick: Option<&str> = if s.starts_with(":") { Oct 15 10:30:25.473 INFO kablam! 32 | | // Consider replacing with a split() Oct 15 10:30:25.473 INFO kablam! ... | Oct 15 10:30:25.473 INFO kablam! 77 | | Message::new(Some(sender), contents, line) Oct 15 10:30:25.473 INFO kablam! 78 | | } Oct 15 10:30:25.473 INFO kablam! | |_____^ Oct 15 10:30:25.473 INFO kablam! | Oct 15 10:30:25.473 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 15 10:30:25.473 INFO kablam! Oct 15 10:30:25.475 INFO kablam! warning: unused `std::result::Result` which must be used Oct 15 10:30:25.475 INFO kablam! --> src/main.rs:38:17 Oct 15 10:30:25.475 INFO kablam! | Oct 15 10:30:25.475 INFO kablam! 38 | send_stream(&stream, &format!("PONG {}", resp.unwrap().trim())); Oct 15 10:30:25.475 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 10:30:25.475 INFO kablam! | Oct 15 10:30:25.475 INFO kablam! = note: #[warn(unused_must_use)] on by default Oct 15 10:30:25.475 INFO kablam! = note: this `Result` may be an `Err` variant, which should be handled Oct 15 10:30:25.475 INFO kablam! Oct 15 10:30:25.475 INFO kablam! warning: unused `std::result::Result` which must be used Oct 15 10:30:25.475 INFO kablam! --> src/main.rs:49:21 Oct 15 10:30:25.475 INFO kablam! | Oct 15 10:30:25.475 INFO kablam! 49 | send_stream(&stream, "JOIN #omnius"); Oct 15 10:30:25.475 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 10:30:25.475 INFO kablam! | Oct 15 10:30:25.475 INFO kablam! = note: this `Result` may be an `Err` variant, which should be handled Oct 15 10:30:25.475 INFO kablam! Oct 15 10:30:26.095 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.00s Oct 15 10:30:26.095 INFO kablam! su: No module specific data is present Oct 15 10:30:26.459 INFO running `"docker" "rm" "-f" "2d8fed337beee64911570a221270497558a7faf4dcbe035727fb829dc9b5fede"` Oct 15 10:30:26.711 INFO blam! 2d8fed337beee64911570a221270497558a7faf4dcbe035727fb829dc9b5fede Oct 15 10:30:26.713 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/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 15 10:30:26.895 INFO blam! 1f2e129c90c31c6033646861506f7bf221bdc83c6250953d9e9a28f0c50e953c Oct 15 10:30:26.897 INFO running `"docker" "start" "-a" "1f2e129c90c31c6033646861506f7bf221bdc83c6250953d9e9a28f0c50e953c"` Oct 15 10:30:27.249 INFO kablam! usermod: no changes Oct 15 10:30:27.271 INFO kablam! Compiling isla_bot v0.1.0 (/source) Oct 15 10:30:27.622 INFO kablam! warning: unused import: `ToSocketAddrs` Oct 15 10:30:27.622 INFO kablam! --> src/main.rs:3:27 Oct 15 10:30:27.622 INFO kablam! | Oct 15 10:30:27.622 INFO kablam! 3 | use std::net::{TcpStream, ToSocketAddrs}; Oct 15 10:30:27.622 INFO kablam! | ^^^^^^^^^^^^^ Oct 15 10:30:27.622 INFO kablam! | Oct 15 10:30:27.622 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 10:30:27.622 INFO kablam! Oct 15 10:30:27.622 INFO kablam! warning: unused import: `std::str::FromStr` Oct 15 10:30:27.622 INFO kablam! --> src/main.rs:6:5 Oct 15 10:30:27.622 INFO kablam! | Oct 15 10:30:27.622 INFO kablam! 6 | use std::str::FromStr; Oct 15 10:30:27.622 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 15 10:30:27.622 INFO kablam! Oct 15 10:30:27.622 INFO kablam! warning: unused import: `std::vec` Oct 15 10:30:27.622 INFO kablam! --> src/irc/message.rs:1:5 Oct 15 10:30:27.622 INFO kablam! | Oct 15 10:30:27.622 INFO kablam! 1 | use std::vec; Oct 15 10:30:27.622 INFO kablam! | ^^^^^^^^ Oct 15 10:30:27.622 INFO kablam! Oct 15 10:30:27.665 INFO kablam! warning: unused variable: `bufw` Oct 15 10:30:27.665 INFO kablam! --> src/main.rs:32:17 Oct 15 10:30:27.665 INFO kablam! | Oct 15 10:30:27.665 INFO kablam! 32 | let mut bufw = BufWriter::new(stream.try_clone().unwrap()); Oct 15 10:30:27.665 INFO kablam! | ^^^^ help: consider using `_bufw` instead Oct 15 10:30:27.665 INFO kablam! | Oct 15 10:30:27.665 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 10:30:27.665 INFO kablam! Oct 15 10:30:27.665 INFO kablam! warning: unused variable: `e` Oct 15 10:30:27.665 INFO kablam! --> src/irc/config.rs:24:17 Oct 15 10:30:27.665 INFO kablam! | Oct 15 10:30:27.665 INFO kablam! 24 | Err(e) => None, Oct 15 10:30:27.665 INFO kablam! | ^ help: consider using `_e` instead Oct 15 10:30:27.665 INFO kablam! Oct 15 10:30:27.681 INFO kablam! warning: variable does not need to be mutable Oct 15 10:30:27.681 INFO kablam! --> src/main.rs:32:13 Oct 15 10:30:27.681 INFO kablam! | Oct 15 10:30:27.682 INFO kablam! 32 | let mut bufw = BufWriter::new(stream.try_clone().unwrap()); Oct 15 10:30:27.682 INFO kablam! | ----^^^^ Oct 15 10:30:27.682 INFO kablam! | | Oct 15 10:30:27.682 INFO kablam! | help: remove this `mut` Oct 15 10:30:27.683 INFO kablam! | Oct 15 10:30:27.683 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 15 10:30:27.683 INFO kablam! Oct 15 10:30:27.689 INFO kablam! warning: variable does not need to be mutable Oct 15 10:30:27.690 INFO kablam! --> src/irc/message.rs:60:13 Oct 15 10:30:27.690 INFO kablam! | Oct 15 10:30:27.690 INFO kablam! 60 | let mut args: Vec<&str> = s.splitn(14, ' ').filter(|s| !s.is_empty()).collect(); Oct 15 10:30:27.691 INFO kablam! | ----^^^^ Oct 15 10:30:27.691 INFO kablam! | | Oct 15 10:30:27.691 INFO kablam! | help: remove this `mut` Oct 15 10:30:27.691 INFO kablam! Oct 15 10:30:27.694 INFO kablam! warning: method `FromStr` should have a snake case name such as `from_str` Oct 15 10:30:27.694 INFO kablam! --> src/irc/message.rs:29:5 Oct 15 10:30:27.695 INFO kablam! | Oct 15 10:30:27.695 INFO kablam! 29 | / pub fn FromStr(line: &str) -> Result { Oct 15 10:30:27.696 INFO kablam! 30 | | let mut s: &str = line; Oct 15 10:30:27.696 INFO kablam! 31 | | let nick: Option<&str> = if s.starts_with(":") { Oct 15 10:30:27.696 INFO kablam! 32 | | // Consider replacing with a split() Oct 15 10:30:27.696 INFO kablam! ... | Oct 15 10:30:27.697 INFO kablam! 77 | | Message::new(Some(sender), contents, line) Oct 15 10:30:27.697 INFO kablam! 78 | | } Oct 15 10:30:27.697 INFO kablam! | |_____^ Oct 15 10:30:27.698 INFO kablam! | Oct 15 10:30:27.698 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 15 10:30:27.698 INFO kablam! Oct 15 10:30:27.698 INFO kablam! warning: unused `std::result::Result` which must be used Oct 15 10:30:27.699 INFO kablam! --> src/main.rs:38:17 Oct 15 10:30:27.699 INFO kablam! | Oct 15 10:30:27.699 INFO kablam! 38 | send_stream(&stream, &format!("PONG {}", resp.unwrap().trim())); Oct 15 10:30:27.699 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 10:30:27.700 INFO kablam! | Oct 15 10:30:27.700 INFO kablam! = note: #[warn(unused_must_use)] on by default Oct 15 10:30:27.700 INFO kablam! = note: this `Result` may be an `Err` variant, which should be handled Oct 15 10:30:27.701 INFO kablam! Oct 15 10:30:27.701 INFO kablam! warning: unused `std::result::Result` which must be used Oct 15 10:30:27.701 INFO kablam! --> src/main.rs:49:21 Oct 15 10:30:27.701 INFO kablam! | Oct 15 10:30:27.702 INFO kablam! 49 | send_stream(&stream, "JOIN #omnius"); Oct 15 10:30:27.702 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 10:30:27.702 INFO kablam! | Oct 15 10:30:27.703 INFO kablam! = note: this `Result` may be an `Err` variant, which should be handled Oct 15 10:30:27.703 INFO kablam! Oct 15 10:30:28.025 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.76s Oct 15 10:30:28.026 INFO kablam! su: No module specific data is present Oct 15 10:30:28.269 INFO running `"docker" "rm" "-f" "1f2e129c90c31c6033646861506f7bf221bdc83c6250953d9e9a28f0c50e953c"` Oct 15 10:30:28.364 INFO blam! 1f2e129c90c31c6033646861506f7bf221bdc83c6250953d9e9a28f0c50e953c Oct 15 10:30:28.369 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/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 15 10:30:28.542 INFO blam! 523f76a98cc8ecdaa7ae0e43451d21c8104f9eb544211e20e25badb3ba2ba617 Oct 15 10:30:28.545 INFO running `"docker" "start" "-a" "523f76a98cc8ecdaa7ae0e43451d21c8104f9eb544211e20e25badb3ba2ba617"` Oct 15 10:30:29.147 INFO kablam! usermod: no changes Oct 15 10:30:29.179 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 15 10:30:29.187 INFO kablam! Running /target/debug/deps/isla_bot-9db90e3356783ec8 Oct 15 10:30:29.219 INFO blam! Oct 15 10:30:29.219 INFO blam! running 0 tests Oct 15 10:30:29.219 INFO blam! Oct 15 10:30:29.219 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 10:30:29.219 INFO blam! Oct 15 10:30:29.220 INFO kablam! su: No module specific data is present Oct 15 10:30:29.861 INFO running `"docker" "rm" "-f" "523f76a98cc8ecdaa7ae0e43451d21c8104f9eb544211e20e25badb3ba2ba617"` Oct 15 10:30:30.089 INFO blam! 523f76a98cc8ecdaa7ae0e43451d21c8104f9eb544211e20e25badb3ba2ba617