Oct 11 00:42:21.933 INFO testing danielbusaba/histogram against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling Oct 11 00:42:21.933 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen Oct 11 00:42:21.935 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,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" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 11 00:42:22.402 INFO blam! 329eab3ecd45d1bd9519e9dd08bdd1e3a3049a144bb9d95a67581c87204c0a92 Oct 11 00:42:22.406 INFO running `"docker" "start" "-a" "329eab3ecd45d1bd9519e9dd08bdd1e3a3049a144bb9d95a67581c87204c0a92"` Oct 11 00:42:23.760 INFO kablam! usermod: no changes Oct 11 00:42:23.804 INFO kablam! Compiling histogram v0.1.0 (/source) Oct 11 00:42:24.549 INFO kablam! warning: unused import: `std::collections::HashMap` Oct 11 00:42:24.549 INFO kablam! --> src/histogram.rs:1:5 Oct 11 00:42:24.550 INFO kablam! | Oct 11 00:42:24.550 INFO kablam! 1 | use std::collections::HashMap; //Can be used with bucket to create sublog histograms Oct 11 00:42:24.550 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.551 INFO kablam! | Oct 11 00:42:24.551 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 11 00:42:24.551 INFO kablam! Oct 11 00:42:24.551 INFO kablam! warning: unused import: `histogram::Histogram` Oct 11 00:42:24.552 INFO kablam! --> src/main.rs:2:5 Oct 11 00:42:24.552 INFO kablam! | Oct 11 00:42:24.552 INFO kablam! 2 | use histogram::Histogram; //Imports Histogram struct Oct 11 00:42:24.552 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.553 INFO kablam! Oct 11 00:42:24.692 INFO kablam! warning: struct is never constructed: `Histogram` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:4:1 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 4 | pub struct Histogram //Stores a Histogram Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! = note: #[warn(dead_code)] on by default Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `new_single` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:13:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 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 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `add` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:18:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 18 | pub fn add(&mut self, reuse_time: u64) Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `insert` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:31:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 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 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_frequency` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:43:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 43 | pub fn get_frequency(&self, reuse_time: u64) -> u64 //Retreives the frequency value at a given reuse time Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_values` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:52:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 52 | pub fn get_values(&self) -> Vec //Returns copy of internal vector Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_max_reuse_time` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:57:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 57 | pub fn get_max_reuse_time(&self) -> u64 //Returns copy of max reuse time Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `new_tuple` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:65:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 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 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `add` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:80:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 80 | pub fn add(&mut self, reuse_time: u64) //Inserts a value into the histogram at a given reuse time Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_tuple` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:96:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 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 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_frequency` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:105:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 105 | pub fn get_frequency(&self, reuse_time: u64) -> u64 //Retreives the frequency value at a given reuse time Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_values` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:114:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.693 INFO kablam! 114 | pub fn get_values(&self) -> Vec <(u64, u64, u64, u64)> //Returns copy of internal vector Oct 11 00:42:24.693 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.693 INFO kablam! Oct 11 00:42:24.693 INFO kablam! warning: method is never used: `get_max_reuse_time` Oct 11 00:42:24.693 INFO kablam! --> src/histogram.rs:119:5 Oct 11 00:42:24.693 INFO kablam! | Oct 11 00:42:24.694 INFO kablam! 119 | pub fn get_max_reuse_time(&self) -> u64 //Returns copy of max reuse time Oct 11 00:42:24.694 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:24.694 INFO kablam! Oct 11 00:42:25.092 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.29s Oct 11 00:42:25.092 INFO kablam! su: No module specific data is present Oct 11 00:42:25.788 INFO running `"docker" "rm" "-f" "329eab3ecd45d1bd9519e9dd08bdd1e3a3049a144bb9d95a67581c87204c0a92"` Oct 11 00:42:26.125 INFO blam! 329eab3ecd45d1bd9519e9dd08bdd1e3a3049a144bb9d95a67581c87204c0a92 Oct 11 00:42:26.127 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run Oct 11 00:42:26.129 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,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" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 11 00:42:26.494 INFO blam! a8938ba1a58bfdbc8c31a157e707a7f555432753f87345d33513c3ad3513486e Oct 11 00:42:26.496 INFO running `"docker" "start" "-a" "a8938ba1a58bfdbc8c31a157e707a7f555432753f87345d33513c3ad3513486e"` Oct 11 00:42:27.724 INFO kablam! usermod: no changes Oct 11 00:42:27.774 INFO kablam! Compiling histogram v0.1.0 (/source) Oct 11 00:42:28.572 INFO kablam! warning: unused import: `histogram::Histogram` Oct 11 00:42:28.573 INFO kablam! --> src/main.rs:2:5 Oct 11 00:42:28.573 INFO kablam! | Oct 11 00:42:28.574 INFO kablam! 2 | use histogram::Histogram; //Imports Histogram struct Oct 11 00:42:28.574 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:28.574 INFO kablam! | Oct 11 00:42:28.575 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 11 00:42:28.575 INFO kablam! Oct 11 00:42:28.796 INFO kablam! warning: method is never used: `get_values` Oct 11 00:42:28.796 INFO kablam! --> src/histogram.rs:114:5 Oct 11 00:42:28.796 INFO kablam! | Oct 11 00:42:28.796 INFO kablam! 114 | pub fn get_values(&self) -> Vec <(u64, u64, u64, u64)> //Returns copy of internal vector Oct 11 00:42:28.796 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:28.796 INFO kablam! | Oct 11 00:42:28.796 INFO kablam! = note: #[warn(dead_code)] on by default Oct 11 00:42:28.796 INFO kablam! Oct 11 00:42:28.796 INFO kablam! warning: method is never used: `get_max_reuse_time` Oct 11 00:42:28.796 INFO kablam! --> src/histogram.rs:119:5 Oct 11 00:42:28.796 INFO kablam! | Oct 11 00:42:28.796 INFO kablam! 119 | pub fn get_max_reuse_time(&self) -> u64 //Returns copy of max reuse time Oct 11 00:42:28.796 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 00:42:28.796 INFO kablam! Oct 11 00:42:29.634 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.89s Oct 11 00:42:29.636 INFO kablam! su: No module specific data is present Oct 11 00:42:29.912 INFO running `"docker" "rm" "-f" "a8938ba1a58bfdbc8c31a157e707a7f555432753f87345d33513c3ad3513486e"` Oct 11 00:42:30.029 INFO blam! a8938ba1a58bfdbc8c31a157e707a7f555432753f87345d33513c3ad3513486e Oct 11 00:42:30.031 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen Oct 11 00:42:30.032 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-7/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,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" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 11 00:42:30.354 INFO blam! c694541a83e81bbcaddd7715e06909f9ba5db9512c7e4ea3d5af3db1923c6440 Oct 11 00:42:30.357 INFO running `"docker" "start" "-a" "c694541a83e81bbcaddd7715e06909f9ba5db9512c7e4ea3d5af3db1923c6440"` Oct 11 00:42:30.767 INFO kablam! usermod: no changes Oct 11 00:42:30.793 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 11 00:42:30.797 INFO kablam! Running /target/debug/deps/histogram-badd9c57e927294e Oct 11 00:42:30.802 INFO blam! Oct 11 00:42:30.802 INFO blam! running 8 tests Oct 11 00:42:30.809 INFO blam! test histogram::test_histogram_tuple_add ... ok Oct 11 00:42:30.809 INFO blam! test histogram::test_histogram_values ... ok Oct 11 00:42:30.809 INFO blam! test histogram::test_histogram_max_reuse_time ... ok Oct 11 00:42:30.809 INFO blam! test histogram::test_value_to_index ... ok Oct 11 00:42:30.809 INFO blam! test histogram::test_hash ... ok Oct 11 00:42:30.809 INFO blam! test histogram::test_clone ... ok Oct 11 00:42:30.809 INFO blam! test histogram::test_histogram_addition ... ok Oct 11 00:42:30.819 INFO blam! test histogram::test_histogram_insertion ... ok Oct 11 00:42:30.819 INFO kablam! su: No module specific data is present Oct 11 00:42:30.819 INFO blam! Oct 11 00:42:30.819 INFO blam! test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 11 00:42:30.819 INFO blam! Oct 11 00:42:31.960 INFO running `"docker" "rm" "-f" "c694541a83e81bbcaddd7715e06909f9ba5db9512c7e4ea3d5af3db1923c6440"` Oct 11 00:42:32.324 INFO blam! c694541a83e81bbcaddd7715e06909f9ba5db9512c7e4ea3d5af3db1923c6440