[INFO] fetching crate droprate 1.0.0... [INFO] testing droprate-1.0.0 against 1.60.0 for beta-1.61-1 [INFO] extracting crate droprate 1.0.0 into /workspace/builds/worker-73/source [INFO] validating manifest of crates.io crate droprate 1.0.0 on toolchain 1.60.0 [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate droprate 1.0.0 [INFO] finished tweaking crates.io crate droprate 1.0.0 [INFO] tweaked toml for crates.io crate droprate 1.0.0 written to /workspace/builds/worker-73/source/Cargo.toml [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update", kill_on_drop: false }` [INFO] running `Command { std: "/workspace/cargo-home/bin/cargo" "+1.60.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 9654735b9570034691b50dd612f61e470f7b825d044532b80f00f39585116dc3 [INFO] running `Command { std: "docker" "start" "-a" "9654735b9570034691b50dd612f61e470f7b825d044532b80f00f39585116dc3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "9654735b9570034691b50dd612f61e470f7b825d044532b80f00f39585116dc3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "9654735b9570034691b50dd612f61e470f7b825d044532b80f00f39585116dc3", kill_on_drop: false }` [INFO] [stdout] 9654735b9570034691b50dd612f61e470f7b825d044532b80f00f39585116dc3 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] a5d0ecec33a2c38aafd38e21e3efa91f74391a3e464183784f00c59c41e335ac [INFO] running `Command { std: "docker" "start" "-a" "a5d0ecec33a2c38aafd38e21e3efa91f74391a3e464183784f00c59c41e335ac", kill_on_drop: false }` [INFO] [stderr] Compiling libc v0.2.123 [INFO] [stderr] Compiling getrandom v0.1.16 [INFO] [stderr] Compiling ppv-lite86 v0.2.16 [INFO] [stderr] Compiling rand_core v0.5.1 [INFO] [stderr] Compiling rand_chacha v0.2.2 [INFO] [stderr] Compiling rand v0.7.3 [INFO] [stderr] Compiling droprate v1.0.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:47:55 [INFO] [stdout] | [INFO] [stdout] 47 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 47 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] 47 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:209:55 [INFO] [stdout] | [INFO] [stdout] 209 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 209 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] 209 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:333:55 [INFO] [stdout] | [INFO] [stdout] 333 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 333 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] 333 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished dev [unoptimized + debuginfo] target(s) in 6.16s [INFO] running `Command { std: "docker" "inspect" "a5d0ecec33a2c38aafd38e21e3efa91f74391a3e464183784f00c59c41e335ac", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a5d0ecec33a2c38aafd38e21e3efa91f74391a3e464183784f00c59c41e335ac", kill_on_drop: false }` [INFO] [stdout] a5d0ecec33a2c38aafd38e21e3efa91f74391a3e464183784f00c59c41e335ac [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] ba9e18722138baafd4ebf7a650bdf2f8de244e2c2f02be5d3cad1ab79484ab6b [INFO] running `Command { std: "docker" "start" "-a" "ba9e18722138baafd4ebf7a650bdf2f8de244e2c2f02be5d3cad1ab79484ab6b", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:47:55 [INFO] [stdout] | [INFO] [stdout] 47 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 47 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] 47 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling droprate v1.0.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:209:55 [INFO] [stdout] | [INFO] [stdout] 209 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 209 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] 209 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:333:55 [INFO] [stdout] | [INFO] [stdout] 333 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 333 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] 333 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:47:55 [INFO] [stdout] | [INFO] [stdout] 47 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 47 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] 47 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable; [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:209:55 [INFO] [stdout] | [INFO] [stdout] 209 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 209 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] 209 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> src/lib.rs:333:55 [INFO] [stdout] | [INFO] [stdout] 333 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 333 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stdout] 333 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] --> tests/integration_tests.rs:70:28 [INFO] [stdout] | [INFO] [stdout] 70 | fn random_odds(table: &mut ProbabilityTable, num_cycles: u32) { [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] = note: for more information, see [INFO] [stdout] help: use `dyn` [INFO] [stdout] | [INFO] [stdout] 70 - fn random_odds(table: &mut ProbabilityTable, num_cycles: u32) { [INFO] [stdout] 70 + fn random_odds(table: &mut dyn ProbabilityTable, num_cycles: u32) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 3 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: 1 warning emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 1.18s [INFO] running `Command { std: "docker" "inspect" "ba9e18722138baafd4ebf7a650bdf2f8de244e2c2f02be5d3cad1ab79484ab6b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ba9e18722138baafd4ebf7a650bdf2f8de244e2c2f02be5d3cad1ab79484ab6b", kill_on_drop: false }` [INFO] [stdout] ba9e18722138baafd4ebf7a650bdf2f8de244e2c2f02be5d3cad1ab79484ab6b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-73/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:b0c94ce3c1162fcb8e57cac5b65ec2f72eabb1eebea4fcc35e269e823f681646" "/opt/rustwide/cargo-home/bin/cargo" "+1.60.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] bb808433f9c536e542e21481486d35d1c7cea90f954ac812c677870f1f43bb0d [INFO] running `Command { std: "docker" "start" "-a" "bb808433f9c536e542e21481486d35d1c7cea90f954ac812c677870f1f43bb0d", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] [stdout] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stdout] running 0 tests [INFO] [stderr] --> src/lib.rs:47:55 [INFO] [stdout] [INFO] [stderr] | [INFO] [stdout] test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stderr] 47 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stdout] [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] [INFO] [stderr] | [INFO] [stdout] running 5 tests [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stdout] test empty_table ... ok [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stdout] test populated_table ... ok [INFO] [stderr] = note: for more information, see [INFO] [stdout] test seems_always_valid ... ok [INFO] [stderr] help: use `dyn` [INFO] [stdout] test report_random_probability ... ok [INFO] [stderr] | [INFO] [stderr] 47 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable; [INFO] [stderr] 47 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:209:55 [INFO] [stderr] | [INFO] [stderr] 209 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 209 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stderr] 209 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> src/lib.rs:333:55 [INFO] [stderr] | [INFO] [stderr] 333 | fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 333 - fn push(&mut self, ident: T, weight: f64) -> &mut ProbabilityTable { [INFO] [stderr] 333 + fn push(&mut self, ident: T, weight: f64) -> &mut dyn ProbabilityTable { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `droprate` (lib) generated 3 warnings [INFO] [stderr] warning: `droprate` (lib test) generated 3 warnings (3 duplicates) [INFO] [stderr] warning: trait objects without an explicit `dyn` are deprecated [INFO] [stderr] --> tests/integration_tests.rs:70:28 [INFO] [stderr] | [INFO] [stderr] 70 | fn random_odds(table: &mut ProbabilityTable, num_cycles: u32) { [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(bare_trait_objects)]` on by default [INFO] [stderr] = warning: this is accepted in the current edition (Rust 2018) but is a hard error in Rust 2021! [INFO] [stderr] = note: for more information, see [INFO] [stderr] help: use `dyn` [INFO] [stderr] | [INFO] [stderr] 70 - fn random_odds(table: &mut ProbabilityTable, num_cycles: u32) { [INFO] [stderr] 70 + fn random_odds(table: &mut dyn ProbabilityTable, num_cycles: u32) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `droprate` (test "integration_tests") generated 1 warning [INFO] [stderr] Finished test [unoptimized + debuginfo] target(s) in 0.06s [INFO] [stderr] Running unittests (/opt/rustwide/target/debug/deps/droprate-81bdd29eb73f3257) [INFO] [stderr] Running tests/integration_tests.rs (/opt/rustwide/target/debug/deps/integration_tests-b998de732c04f31a) [INFO] [stdout] test report_reactive_probability ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 5 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.15s [INFO] [stdout] [INFO] [stderr] Doc-tests droprate [INFO] [stdout] [INFO] [stdout] running 8 tests [INFO] [stdout] test src/lib.rs - ProbabilityTable::random (line 96) ... ok [INFO] [stdout] test src/lib.rs - FairlyRandomTable::from_map (line 269) ... ok [INFO] [stdout] test src/lib.rs - RandomTable::from_map (line 167) ... ok [INFO] [stdout] test src/lib.rs - ProbabilityTable::keys (line 71) ... ok [INFO] [stdout] test src/lib.rs - FairlyRandomTable::from_map (line 254) ... ok [INFO] [stdout] test src/lib.rs - ProbabilityTable::push (line 37) ... ok [INFO] [stdout] test src/lib.rs - ProbabilityTable::count (line 53) ... ok [INFO] [stdout] test src/lib.rs - RandomTable::from_map (line 182) ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 8 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.94s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "bb808433f9c536e542e21481486d35d1c7cea90f954ac812c677870f1f43bb0d", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "bb808433f9c536e542e21481486d35d1c7cea90f954ac812c677870f1f43bb0d", kill_on_drop: false }` [INFO] [stdout] bb808433f9c536e542e21481486d35d1c7cea90f954ac812c677870f1f43bb0d