Oct 13 00:40:21.500 INFO testing shanemikel/rust-hello against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 13 00:40:21.500 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/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 00:40:22.097 INFO blam! 62185076aed2a86a07b55078846ba6cbdc62e8ab50d8ae875b430329e384d147 Oct 13 00:40:22.097 INFO running `"docker" "start" "-a" "62185076aed2a86a07b55078846ba6cbdc62e8ab50d8ae875b430329e384d147"` Oct 13 00:40:23.639 INFO kablam! usermod: no changes Oct 13 00:40:23.679 INFO kablam! Compiling rust-hello v0.1.0 (/source) Oct 13 00:40:24.051 INFO kablam! warning: unused import: `std::cell::RefCell` Oct 13 00:40:24.052 INFO kablam! --> src/main.rs:8:9 Oct 13 00:40:24.052 INFO kablam! | Oct 13 00:40:24.052 INFO kablam! 8 | use std::cell::RefCell; Oct 13 00:40:24.053 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.053 INFO kablam! | Oct 13 00:40:24.053 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 00:40:24.054 INFO kablam! Oct 13 00:40:24.054 INFO kablam! warning: unused import: `Mutex` Oct 13 00:40:24.054 INFO kablam! --> src/main.rs:9:26 Oct 13 00:40:24.054 INFO kablam! | Oct 13 00:40:24.055 INFO kablam! 9 | use std::sync::{Arc, Mutex, RwLock}; Oct 13 00:40:24.055 INFO kablam! | ^^^^^ Oct 13 00:40:24.055 INFO kablam! Oct 13 00:40:24.183 INFO kablam! warning: unused variable: `data` Oct 13 00:40:24.184 INFO kablam! --> src/main.rs:25:17 Oct 13 00:40:24.184 INFO kablam! | Oct 13 00:40:24.184 INFO kablam! 25 | let data = data.read().unwrap(); Oct 13 00:40:24.185 INFO kablam! | ^^^^ help: consider using `_data` instead Oct 13 00:40:24.185 INFO kablam! | Oct 13 00:40:24.185 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 00:40:24.186 INFO kablam! Oct 13 00:40:24.199 INFO kablam! warning: enum is never used: `List` Oct 13 00:40:24.200 INFO kablam! --> src/list.rs:3:1 Oct 13 00:40:24.200 INFO kablam! | Oct 13 00:40:24.200 INFO kablam! 3 | pub enum List { Oct 13 00:40:24.201 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 13 00:40:24.201 INFO kablam! | Oct 13 00:40:24.201 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 00:40:24.201 INFO kablam! Oct 13 00:40:24.202 INFO kablam! warning: method is never used: `new` Oct 13 00:40:24.202 INFO kablam! --> src/list.rs:9:5 Oct 13 00:40:24.202 INFO kablam! | Oct 13 00:40:24.203 INFO kablam! 9 | pub fn new() -> List { List::Nil } Oct 13 00:40:24.203 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.203 INFO kablam! Oct 13 00:40:24.203 INFO kablam! warning: method is never used: `cons` Oct 13 00:40:24.204 INFO kablam! --> src/list.rs:11:5 Oct 13 00:40:24.204 INFO kablam! | Oct 13 00:40:24.204 INFO kablam! 11 | pub fn cons(self, x: T) -> List { List::Cons(x, Box::new(self)) } Oct 13 00:40:24.204 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.205 INFO kablam! Oct 13 00:40:24.205 INFO kablam! warning: method is never used: `head` Oct 13 00:40:24.205 INFO kablam! --> src/list.rs:13:5 Oct 13 00:40:24.206 INFO kablam! | Oct 13 00:40:24.206 INFO kablam! 13 | pub fn head(self) -> Option { Oct 13 00:40:24.206 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.206 INFO kablam! Oct 13 00:40:24.207 INFO kablam! warning: method is never used: `tail` Oct 13 00:40:24.207 INFO kablam! --> src/list.rs:20:5 Oct 13 00:40:24.207 INFO kablam! | Oct 13 00:40:24.207 INFO kablam! 20 | pub fn tail(&self) -> Option<&List> { Oct 13 00:40:24.208 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.208 INFO kablam! Oct 13 00:40:24.208 INFO kablam! warning: method is never used: `head_ref` Oct 13 00:40:24.208 INFO kablam! --> src/list.rs:29:5 Oct 13 00:40:24.209 INFO kablam! | Oct 13 00:40:24.209 INFO kablam! 29 | pub fn head_ref(&self) -> Option { Oct 13 00:40:24.209 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.209 INFO kablam! Oct 13 00:40:24.210 INFO kablam! warning: constant item is never used: `N` Oct 13 00:40:24.210 INFO kablam! --> src/main.rs:13:5 Oct 13 00:40:24.210 INFO kablam! | Oct 13 00:40:24.210 INFO kablam! 13 | const N: usize = 10; Oct 13 00:40:24.211 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:24.211 INFO kablam! Oct 13 00:40:24.211 INFO kablam! warning: function is never used: `test_list` Oct 13 00:40:24.212 INFO kablam! --> src/main.rs:39:1 Oct 13 00:40:24.212 INFO kablam! | Oct 13 00:40:24.212 INFO kablam! 39 | fn test_list() { Oct 13 00:40:24.212 INFO kablam! | ^^^^^^^^^^^^^^ Oct 13 00:40:24.213 INFO kablam! Oct 13 00:40:25.431 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.77s Oct 13 00:40:25.431 INFO kablam! su: No module specific data is present Oct 13 00:40:26.294 INFO running `"docker" "rm" "-f" "62185076aed2a86a07b55078846ba6cbdc62e8ab50d8ae875b430329e384d147"` Oct 13 00:40:26.687 INFO blam! 62185076aed2a86a07b55078846ba6cbdc62e8ab50d8ae875b430329e384d147 Oct 13 00:40:26.696 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/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 00:40:27.243 INFO blam! 05d916518f91d2fdaf384259c47717fc30a9817ada6e01a22f3bb759943e0280 Oct 13 00:40:27.267 INFO running `"docker" "start" "-a" "05d916518f91d2fdaf384259c47717fc30a9817ada6e01a22f3bb759943e0280"` Oct 13 00:40:28.506 INFO kablam! usermod: no changes Oct 13 00:40:28.575 INFO kablam! Compiling rust-hello v0.1.0 (/source) Oct 13 00:40:28.955 INFO kablam! warning: unused import: `std::cell::RefCell` Oct 13 00:40:28.955 INFO kablam! --> src/main.rs:8:9 Oct 13 00:40:28.955 INFO kablam! | Oct 13 00:40:28.955 INFO kablam! 8 | use std::cell::RefCell; Oct 13 00:40:28.955 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 00:40:28.955 INFO kablam! | Oct 13 00:40:28.955 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 00:40:28.955 INFO kablam! Oct 13 00:40:28.955 INFO kablam! warning: unused import: `Mutex` Oct 13 00:40:28.955 INFO kablam! --> src/main.rs:9:26 Oct 13 00:40:28.955 INFO kablam! | Oct 13 00:40:28.955 INFO kablam! 9 | use std::sync::{Arc, Mutex, RwLock}; Oct 13 00:40:28.955 INFO kablam! | ^^^^^ Oct 13 00:40:28.955 INFO kablam! Oct 13 00:40:29.096 INFO kablam! warning: unused variable: `data` Oct 13 00:40:29.096 INFO kablam! --> src/main.rs:25:17 Oct 13 00:40:29.096 INFO kablam! | Oct 13 00:40:29.096 INFO kablam! 25 | let data = data.read().unwrap(); Oct 13 00:40:29.096 INFO kablam! | ^^^^ help: consider using `_data` instead Oct 13 00:40:29.096 INFO kablam! | Oct 13 00:40:29.111 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 00:40:29.111 INFO kablam! Oct 13 00:40:29.111 INFO kablam! warning: enum is never used: `List` Oct 13 00:40:29.111 INFO kablam! --> src/list.rs:3:1 Oct 13 00:40:29.111 INFO kablam! | Oct 13 00:40:29.111 INFO kablam! 3 | pub enum List { Oct 13 00:40:29.111 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 13 00:40:29.111 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: method is never used: `new` Oct 13 00:40:29.113 INFO kablam! --> src/list.rs:9:5 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 9 | pub fn new() -> List { List::Nil } Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: method is never used: `cons` Oct 13 00:40:29.113 INFO kablam! --> src/list.rs:11:5 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 11 | pub fn cons(self, x: T) -> List { List::Cons(x, Box::new(self)) } Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: method is never used: `head` Oct 13 00:40:29.113 INFO kablam! --> src/list.rs:13:5 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 13 | pub fn head(self) -> Option { Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: method is never used: `tail` Oct 13 00:40:29.113 INFO kablam! --> src/list.rs:20:5 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 20 | pub fn tail(&self) -> Option<&List> { Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: method is never used: `head_ref` Oct 13 00:40:29.113 INFO kablam! --> src/list.rs:29:5 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 29 | pub fn head_ref(&self) -> Option { Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: constant item is never used: `N` Oct 13 00:40:29.113 INFO kablam! --> src/main.rs:13:5 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 13 | const N: usize = 10; Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.113 INFO kablam! warning: function is never used: `test_list` Oct 13 00:40:29.113 INFO kablam! --> src/main.rs:39:1 Oct 13 00:40:29.113 INFO kablam! | Oct 13 00:40:29.113 INFO kablam! 39 | fn test_list() { Oct 13 00:40:29.113 INFO kablam! | ^^^^^^^^^^^^^^ Oct 13 00:40:29.113 INFO kablam! Oct 13 00:40:29.568 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.03s Oct 13 00:40:29.570 INFO kablam! su: No module specific data is present Oct 13 00:40:31.512 INFO running `"docker" "rm" "-f" "05d916518f91d2fdaf384259c47717fc30a9817ada6e01a22f3bb759943e0280"` Oct 13 00:40:31.799 INFO blam! 05d916518f91d2fdaf384259c47717fc30a9817ada6e01a22f3bb759943e0280 Oct 13 00:40:31.804 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/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 00:40:32.310 INFO blam! 0129650bbfa564ee6bf8aa4ad84d155ff0038f44476a96fd338281dd2114b779 Oct 13 00:40:32.310 INFO running `"docker" "start" "-a" "0129650bbfa564ee6bf8aa4ad84d155ff0038f44476a96fd338281dd2114b779"` Oct 13 00:40:34.327 INFO kablam! usermod: no changes Oct 13 00:40:34.383 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.03s Oct 13 00:40:34.399 INFO kablam! Running /target/debug/deps/rust_hello-884be8888025d9bf Oct 13 00:40:34.399 INFO blam! Oct 13 00:40:34.399 INFO blam! running 0 tests Oct 13 00:40:34.399 INFO blam! Oct 13 00:40:34.399 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 00:40:34.399 INFO blam! Oct 13 00:40:34.399 INFO kablam! su: No module specific data is present Oct 13 00:40:35.828 INFO running `"docker" "rm" "-f" "0129650bbfa564ee6bf8aa4ad84d155ff0038f44476a96fd338281dd2114b779"` Oct 13 00:40:36.122 INFO blam! 0129650bbfa564ee6bf8aa4ad84d155ff0038f44476a96fd338281dd2114b779