Oct 14 23:42:53.580 INFO testing danielbusaba/histogram against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 14 23:42:53.580 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-3/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-3/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 14 23:42:54.475 INFO blam! 97352b489f445167759ff1965d70032e9795fc6684cf2026ca0b2fb15fa87fa7 Oct 14 23:42:54.475 INFO running `"docker" "start" "-a" "97352b489f445167759ff1965d70032e9795fc6684cf2026ca0b2fb15fa87fa7"` Oct 14 23:42:55.635 INFO kablam! usermod: no changes Oct 14 23:42:55.699 INFO kablam! Compiling histogram v0.1.0 (/source) Oct 14 23:42:56.209 INFO kablam! warning: unused import: `std::collections::HashMap` Oct 14 23:42:56.209 INFO kablam! --> src/histogram.rs:1:5 Oct 14 23:42:56.209 INFO kablam! | Oct 14 23:42:56.209 INFO kablam! 1 | use std::collections::HashMap; //Can be used with bucket to create sublog histograms Oct 14 23:42:56.209 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.209 INFO kablam! | Oct 14 23:42:56.209 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 14 23:42:56.209 INFO kablam! Oct 14 23:42:56.209 INFO kablam! warning: unused import: `histogram::Histogram` Oct 14 23:42:56.209 INFO kablam! --> src/main.rs:2:5 Oct 14 23:42:56.209 INFO kablam! | Oct 14 23:42:56.209 INFO kablam! 2 | use histogram::Histogram; //Imports Histogram struct Oct 14 23:42:56.209 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.209 INFO kablam! Oct 14 23:42:56.368 INFO kablam! warning: struct is never constructed: `Histogram` Oct 14 23:42:56.368 INFO kablam! --> src/histogram.rs:4:1 Oct 14 23:42:56.368 INFO kablam! | Oct 14 23:42:56.368 INFO kablam! 4 | pub struct Histogram //Stores a Histogram Oct 14 23:42:56.368 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.368 INFO kablam! | Oct 14 23:42:56.368 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `new_single` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:13:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 13 | pub fn new_single(sb: u64, mrt: u64) -> Histogram //Constructor that takes in the sublog bits and the maximum reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `add` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:18:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 18 | pub fn add(&mut self, reuse_time: u64) Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `insert` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:31:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 31 | pub fn insert(&mut self, reuse_time: u64, frequency: u64) //Inserts a value into the histogram at a given reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_frequency` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:43:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 43 | pub fn get_frequency(&self, reuse_time: u64) -> u64 //Retreives the frequency value at a given reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_values` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:52:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 52 | pub fn get_values(&self) -> Vec //Returns copy of internal vector Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_max_reuse_time` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:57:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 57 | pub fn get_max_reuse_time(&self) -> u64 //Returns copy of max reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `new_tuple` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:65:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 65 | pub fn new_tuple(sb: u64, mrt: u64) -> Histogram <(u64, u64, u64, u64)> //Constructor that takes in the sublog bits and the maximum reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `add` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:80:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 80 | pub fn add(&mut self, reuse_time: u64) //Inserts a value into the histogram at a given reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_tuple` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:96:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 96 | pub fn get_tuple(&self, reuse_time: u64) -> (u64, u64, u64, u64) //Retreives the value tuple at a given reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_frequency` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:105:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 105 | pub fn get_frequency(&self, reuse_time: u64) -> u64 //Retreives the frequency value at a given reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_values` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:114:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 114 | pub fn get_values(&self) -> Vec <(u64, u64, u64, u64)> //Returns copy of internal vector Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.369 INFO kablam! warning: method is never used: `get_max_reuse_time` Oct 14 23:42:56.369 INFO kablam! --> src/histogram.rs:119:5 Oct 14 23:42:56.369 INFO kablam! | Oct 14 23:42:56.369 INFO kablam! 119 | pub fn get_max_reuse_time(&self) -> u64 //Returns copy of max reuse time Oct 14 23:42:56.369 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:56.369 INFO kablam! Oct 14 23:42:56.715 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.04s Oct 14 23:42:56.717 INFO kablam! su: No module specific data is present Oct 14 23:42:57.757 INFO running `"docker" "rm" "-f" "97352b489f445167759ff1965d70032e9795fc6684cf2026ca0b2fb15fa87fa7"` Oct 14 23:42:58.067 INFO blam! 97352b489f445167759ff1965d70032e9795fc6684cf2026ca0b2fb15fa87fa7 Oct 14 23:42:58.075 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-3/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-3/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 14 23:42:58.560 INFO blam! ca4fd1cec98a54b61f0ad23dc31056402ff9453f9fcc65d0e52d21d6a9c7c04e Oct 14 23:42:58.565 INFO running `"docker" "start" "-a" "ca4fd1cec98a54b61f0ad23dc31056402ff9453f9fcc65d0e52d21d6a9c7c04e"` Oct 14 23:42:59.534 INFO kablam! usermod: no changes Oct 14 23:42:59.575 INFO kablam! Compiling histogram v0.1.0 (/source) Oct 14 23:42:59.902 INFO kablam! warning: unused import: `histogram::Histogram` Oct 14 23:42:59.902 INFO kablam! --> src/main.rs:2:5 Oct 14 23:42:59.902 INFO kablam! | Oct 14 23:42:59.902 INFO kablam! 2 | use histogram::Histogram; //Imports Histogram struct Oct 14 23:42:59.902 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 14 23:42:59.902 INFO kablam! | Oct 14 23:42:59.902 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 14 23:42:59.902 INFO kablam! Oct 14 23:43:00.080 INFO kablam! warning: method is never used: `get_values` Oct 14 23:43:00.080 INFO kablam! --> src/histogram.rs:114:5 Oct 14 23:43:00.081 INFO kablam! | Oct 14 23:43:00.081 INFO kablam! 114 | pub fn get_values(&self) -> Vec <(u64, u64, u64, u64)> //Returns copy of internal vector Oct 14 23:43:00.081 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:43:00.081 INFO kablam! | Oct 14 23:43:00.081 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 23:43:00.082 INFO kablam! Oct 14 23:43:00.082 INFO kablam! warning: method is never used: `get_max_reuse_time` Oct 14 23:43:00.082 INFO kablam! --> src/histogram.rs:119:5 Oct 14 23:43:00.082 INFO kablam! | Oct 14 23:43:00.082 INFO kablam! 119 | pub fn get_max_reuse_time(&self) -> u64 //Returns copy of max reuse time Oct 14 23:43:00.083 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 23:43:00.083 INFO kablam! Oct 14 23:43:00.808 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.25s Oct 14 23:43:00.809 INFO kablam! su: No module specific data is present Oct 14 23:43:01.420 INFO running `"docker" "rm" "-f" "ca4fd1cec98a54b61f0ad23dc31056402ff9453f9fcc65d0e52d21d6a9c7c04e"` Oct 14 23:43:01.663 INFO blam! ca4fd1cec98a54b61f0ad23dc31056402ff9453f9fcc65d0e52d21d6a9c7c04e Oct 14 23:43:01.669 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-3/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-3/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 14 23:43:02.045 INFO blam! f97666e96ebc3bab50383f0dc62f7c505179e6b88933173568095ae2c3e9866e Oct 14 23:43:02.055 INFO running `"docker" "start" "-a" "f97666e96ebc3bab50383f0dc62f7c505179e6b88933173568095ae2c3e9866e"` Oct 14 23:43:03.367 INFO kablam! usermod: no changes Oct 14 23:43:03.427 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.02s Oct 14 23:43:03.427 INFO kablam! Running /target/debug/deps/histogram-854dca604a9d0da6 Oct 14 23:43:03.431 INFO blam! Oct 14 23:43:03.434 INFO blam! running 8 tests Oct 14 23:43:03.435 INFO blam! test histogram::test_value_to_index ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_histogram_max_reuse_time ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_histogram_insertion ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_histogram_addition ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_clone ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_histogram_tuple_add ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_histogram_values ... ok Oct 14 23:43:03.435 INFO blam! test histogram::test_hash ... ok Oct 14 23:43:03.435 INFO blam! Oct 14 23:43:03.435 INFO blam! test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 23:43:03.435 INFO blam! Oct 14 23:43:03.435 INFO kablam! su: No module specific data is present Oct 14 23:43:04.053 INFO running `"docker" "rm" "-f" "f97666e96ebc3bab50383f0dc62f7c505179e6b88933173568095ae2c3e9866e"` Oct 14 23:43:04.315 INFO blam! f97666e96ebc3bab50383f0dc62f7c505179e6b88933173568095ae2c3e9866e