Oct 15 09:57:45.487 INFO testing JayDalton/hello-world against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 15 09:57:45.489 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 09:57:46.101 INFO blam! 4b4de1fc61c3077e9184a6cd4e23848d8beece9669ca331703772a22d3d6f073 Oct 15 09:57:46.104 INFO running `"docker" "start" "-a" "4b4de1fc61c3077e9184a6cd4e23848d8beece9669ca331703772a22d3d6f073"` Oct 15 09:57:47.560 INFO kablam! usermod: no changes Oct 15 09:57:47.642 INFO kablam! Compiling rustfft v2.0.0 Oct 15 09:57:49.447 INFO kablam! Compiling hello-world v0.1.0 (/source) Oct 15 09:57:50.056 INFO kablam! warning: unused variable: `max_num` Oct 15 09:57:50.056 INFO kablam! --> source/primes.rs:46:21 Oct 15 09:57:50.056 INFO kablam! | Oct 15 09:57:50.057 INFO kablam! 46 | pub fn athkin_sieve(max_num: usize) -> HashMap { Oct 15 09:57:50.057 INFO kablam! | ^^^^^^^ help: consider using `_max_num` instead Oct 15 09:57:50.057 INFO kablam! | Oct 15 09:57:50.058 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 09:57:50.058 INFO kablam! Oct 15 09:57:50.058 INFO kablam! warning: unused variable: `zeigen` Oct 15 09:57:50.058 INFO kablam! --> source/primes.rs:220:33 Oct 15 09:57:50.059 INFO kablam! | Oct 15 09:57:50.059 INFO kablam! 220 | pub fn primesums(grenze: usize, zeigen: bool) -> usize { Oct 15 09:57:50.059 INFO kablam! | ^^^^^^ help: consider using `_zeigen` instead Oct 15 09:57:50.059 INFO kablam! Oct 15 09:57:50.090 INFO kablam! warning: variable does not need to be mutable Oct 15 09:57:50.092 INFO kablam! --> source/primes.rs:221:9 Oct 15 09:57:50.092 INFO kablam! | Oct 15 09:57:50.092 INFO kablam! 221 | let mut anzahl: usize = 0; Oct 15 09:57:50.093 INFO kablam! | ----^^^^^^ Oct 15 09:57:50.093 INFO kablam! | | Oct 15 09:57:50.093 INFO kablam! | help: remove this `mut` Oct 15 09:57:50.093 INFO kablam! | Oct 15 09:57:50.094 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 15 09:57:50.094 INFO kablam! Oct 15 09:57:50.094 INFO kablam! warning: function is never used: `get_factors` Oct 15 09:57:50.095 INFO kablam! --> source/primes.rs:15:1 Oct 15 09:57:50.095 INFO kablam! | Oct 15 09:57:50.095 INFO kablam! 15 | fn get_factors(x:u64) -> Vec { Oct 15 09:57:50.095 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.096 INFO kablam! | Oct 15 09:57:50.096 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 09:57:50.096 INFO kablam! Oct 15 09:57:50.096 INFO kablam! warning: function is never used: `is_prime` Oct 15 09:57:50.097 INFO kablam! --> source/primes.rs:28:1 Oct 15 09:57:50.097 INFO kablam! | Oct 15 09:57:50.097 INFO kablam! 28 | fn is_prime(x:u64) -> bool { Oct 15 09:57:50.097 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.098 INFO kablam! Oct 15 09:57:50.098 INFO kablam! warning: function is never used: `get_prime_factors` Oct 15 09:57:50.098 INFO kablam! --> source/primes.rs:32:1 Oct 15 09:57:50.098 INFO kablam! | Oct 15 09:57:50.099 INFO kablam! 32 | fn get_prime_factors(x:u64) -> Vec { Oct 15 09:57:50.099 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.099 INFO kablam! Oct 15 09:57:50.099 INFO kablam! warning: function is never used: `get_largest_prime` Oct 15 09:57:50.100 INFO kablam! --> source/primes.rs:42:1 Oct 15 09:57:50.100 INFO kablam! | Oct 15 09:57:50.100 INFO kablam! 42 | fn get_largest_prime(x:u64) -> u64 { Oct 15 09:57:50.100 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.101 INFO kablam! Oct 15 09:57:50.101 INFO kablam! warning: function is never used: `athkin_sieve` Oct 15 09:57:50.101 INFO kablam! --> source/primes.rs:46:1 Oct 15 09:57:50.101 INFO kablam! | Oct 15 09:57:50.102 INFO kablam! 46 | pub fn athkin_sieve(max_num: usize) -> HashMap { Oct 15 09:57:50.102 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.102 INFO kablam! Oct 15 09:57:50.102 INFO kablam! warning: function is never used: `simple_sieve` Oct 15 09:57:50.103 INFO kablam! --> source/primes.rs:107:1 Oct 15 09:57:50.103 INFO kablam! | Oct 15 09:57:50.103 INFO kablam! 107 | pub fn simple_sieve(limit: usize) -> Vec { Oct 15 09:57:50.103 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.104 INFO kablam! Oct 15 09:57:50.104 INFO kablam! warning: function is never used: `basic_sieve` Oct 15 09:57:50.104 INFO kablam! --> source/primes.rs:127:1 Oct 15 09:57:50.104 INFO kablam! | Oct 15 09:57:50.105 INFO kablam! 127 | pub fn basic_sieve(limit: usize) -> Box> { Oct 15 09:57:50.105 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.105 INFO kablam! Oct 15 09:57:50.106 INFO kablam! warning: function is never used: `get_duration` Oct 15 09:57:50.106 INFO kablam! --> source/primes.rs:184:1 Oct 15 09:57:50.106 INFO kablam! | Oct 15 09:57:50.106 INFO kablam! 184 | pub fn get_duration(strt: Instant) -> u64 { Oct 15 09:57:50.107 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.107 INFO kablam! Oct 15 09:57:50.107 INFO kablam! warning: function is never used: `compare_primealgos` Oct 15 09:57:50.107 INFO kablam! --> source/primes.rs:192:1 Oct 15 09:57:50.108 INFO kablam! | Oct 15 09:57:50.108 INFO kablam! 192 | pub fn compare_primealgos(){ Oct 15 09:57:50.108 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.108 INFO kablam! Oct 15 09:57:50.109 INFO kablam! warning: function is never used: `get_double` Oct 15 09:57:50.109 INFO kablam! --> source/mod.rs:33:5 Oct 15 09:57:50.109 INFO kablam! | Oct 15 09:57:50.109 INFO kablam! 33 | pub fn get_double(msg: &str) -> f64 { Oct 15 09:57:50.110 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:50.110 INFO kablam! Oct 15 09:57:51.261 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 3.67s Oct 15 09:57:51.262 INFO kablam! su: No module specific data is present Oct 15 09:57:52.285 INFO running `"docker" "rm" "-f" "4b4de1fc61c3077e9184a6cd4e23848d8beece9669ca331703772a22d3d6f073"` Oct 15 09:57:52.631 INFO blam! 4b4de1fc61c3077e9184a6cd4e23848d8beece9669ca331703772a22d3d6f073 Oct 15 09:57:52.638 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 09:57:53.093 INFO blam! 3e768676638af5011c71299a1d1f7ac0911ecf6a6502c1dd480078479983af98 Oct 15 09:57:53.095 INFO running `"docker" "start" "-a" "3e768676638af5011c71299a1d1f7ac0911ecf6a6502c1dd480078479983af98"` Oct 15 09:57:54.810 INFO kablam! usermod: no changes Oct 15 09:57:54.867 INFO kablam! Compiling hello-world v0.1.0 (/source) Oct 15 09:57:55.559 INFO kablam! warning: unused variable: `max_num` Oct 15 09:57:55.560 INFO kablam! --> source/primes.rs:46:21 Oct 15 09:57:55.561 INFO kablam! | Oct 15 09:57:55.561 INFO kablam! 46 | pub fn athkin_sieve(max_num: usize) -> HashMap { Oct 15 09:57:55.562 INFO kablam! | ^^^^^^^ help: consider using `_max_num` instead Oct 15 09:57:55.563 INFO kablam! | Oct 15 09:57:55.564 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 09:57:55.564 INFO kablam! Oct 15 09:57:55.565 INFO kablam! warning: unused variable: `zeigen` Oct 15 09:57:55.566 INFO kablam! --> source/primes.rs:220:33 Oct 15 09:57:55.566 INFO kablam! | Oct 15 09:57:55.567 INFO kablam! 220 | pub fn primesums(grenze: usize, zeigen: bool) -> usize { Oct 15 09:57:55.568 INFO kablam! | ^^^^^^ help: consider using `_zeigen` instead Oct 15 09:57:55.568 INFO kablam! Oct 15 09:57:55.594 INFO kablam! warning: variable does not need to be mutable Oct 15 09:57:55.594 INFO kablam! --> source/primes.rs:221:9 Oct 15 09:57:55.595 INFO kablam! | Oct 15 09:57:55.596 INFO kablam! 221 | let mut anzahl: usize = 0; Oct 15 09:57:55.597 INFO kablam! | ----^^^^^^ Oct 15 09:57:55.597 INFO kablam! | | Oct 15 09:57:55.598 INFO kablam! | help: remove this `mut` Oct 15 09:57:55.599 INFO kablam! | Oct 15 09:57:55.599 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 15 09:57:55.600 INFO kablam! Oct 15 09:57:55.600 INFO kablam! warning: function is never used: `get_factors` Oct 15 09:57:55.601 INFO kablam! --> source/primes.rs:15:1 Oct 15 09:57:55.602 INFO kablam! | Oct 15 09:57:55.602 INFO kablam! 15 | fn get_factors(x:u64) -> Vec { Oct 15 09:57:55.603 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.604 INFO kablam! | Oct 15 09:57:55.604 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 09:57:55.604 INFO kablam! Oct 15 09:57:55.604 INFO kablam! warning: function is never used: `is_prime` Oct 15 09:57:55.604 INFO kablam! --> source/primes.rs:28:1 Oct 15 09:57:55.604 INFO kablam! | Oct 15 09:57:55.604 INFO kablam! 28 | fn is_prime(x:u64) -> bool { Oct 15 09:57:55.604 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.604 INFO kablam! Oct 15 09:57:55.604 INFO kablam! warning: function is never used: `get_prime_factors` Oct 15 09:57:55.604 INFO kablam! --> source/primes.rs:32:1 Oct 15 09:57:55.604 INFO kablam! | Oct 15 09:57:55.604 INFO kablam! 32 | fn get_prime_factors(x:u64) -> Vec { Oct 15 09:57:55.604 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.604 INFO kablam! Oct 15 09:57:55.605 INFO kablam! warning: function is never used: `get_largest_prime` Oct 15 09:57:55.605 INFO kablam! --> source/primes.rs:42:1 Oct 15 09:57:55.605 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 42 | fn get_largest_prime(x:u64) -> u64 { Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:55.611 INFO kablam! warning: function is never used: `athkin_sieve` Oct 15 09:57:55.611 INFO kablam! --> source/primes.rs:46:1 Oct 15 09:57:55.611 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 46 | pub fn athkin_sieve(max_num: usize) -> HashMap { Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:55.611 INFO kablam! warning: function is never used: `simple_sieve` Oct 15 09:57:55.611 INFO kablam! --> source/primes.rs:107:1 Oct 15 09:57:55.611 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 107 | pub fn simple_sieve(limit: usize) -> Vec { Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:55.611 INFO kablam! warning: function is never used: `basic_sieve` Oct 15 09:57:55.611 INFO kablam! --> source/primes.rs:127:1 Oct 15 09:57:55.611 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 127 | pub fn basic_sieve(limit: usize) -> Box> { Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:55.611 INFO kablam! warning: function is never used: `get_duration` Oct 15 09:57:55.611 INFO kablam! --> source/primes.rs:184:1 Oct 15 09:57:55.611 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 184 | pub fn get_duration(strt: Instant) -> u64 { Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:55.611 INFO kablam! warning: function is never used: `compare_primealgos` Oct 15 09:57:55.611 INFO kablam! --> source/primes.rs:192:1 Oct 15 09:57:55.611 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 192 | pub fn compare_primealgos(){ Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:55.611 INFO kablam! warning: function is never used: `get_double` Oct 15 09:57:55.611 INFO kablam! --> source/mod.rs:33:5 Oct 15 09:57:55.611 INFO kablam! | Oct 15 09:57:55.611 INFO kablam! 33 | pub fn get_double(msg: &str) -> f64 { Oct 15 09:57:55.611 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 09:57:55.611 INFO kablam! Oct 15 09:57:56.065 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.23s Oct 15 09:57:56.073 INFO kablam! su: No module specific data is present Oct 15 09:57:57.012 INFO running `"docker" "rm" "-f" "3e768676638af5011c71299a1d1f7ac0911ecf6a6502c1dd480078479983af98"` Oct 15 09:57:57.399 INFO blam! 3e768676638af5011c71299a1d1f7ac0911ecf6a6502c1dd480078479983af98 Oct 15 09:57:57.403 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 09:57:57.783 INFO blam! 58cfb21193ce7acf94c2687d7b32f5d86d4be50bdc6f4af52083f112e738bf47 Oct 15 09:57:57.783 INFO running `"docker" "start" "-a" "58cfb21193ce7acf94c2687d7b32f5d86d4be50bdc6f4af52083f112e738bf47"` Oct 15 09:57:58.907 INFO kablam! usermod: no changes Oct 15 09:57:58.979 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.05s Oct 15 09:57:58.991 INFO kablam! Running /target/debug/deps/hello_world-e0d327dc8fa132b8 Oct 15 09:57:58.991 INFO blam! Oct 15 09:57:58.991 INFO blam! running 0 tests Oct 15 09:57:58.991 INFO blam! Oct 15 09:57:58.991 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 09:57:58.991 INFO blam! Oct 15 09:57:58.992 INFO kablam! su: No module specific data is present Oct 15 09:57:59.822 INFO running `"docker" "rm" "-f" "58cfb21193ce7acf94c2687d7b32f5d86d4be50bdc6f4af52083f112e738bf47"` Oct 15 09:58:00.103 INFO blam! 58cfb21193ce7acf94c2687d7b32f5d86d4be50bdc6f4af52083f112e738bf47