Oct 15 11:08:45.300 INFO testing ErikPartridge/sudoku-generator against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 15 11:08:45.300 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/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 11:08:45.579 INFO blam! a15f12f501fec0862c85e421ac4d51b5225fbffe183212246d1db856e6176115 Oct 15 11:08:45.587 INFO running `"docker" "start" "-a" "a15f12f501fec0862c85e421ac4d51b5225fbffe183212246d1db856e6176115"` Oct 15 11:08:46.158 INFO kablam! usermod: no changes Oct 15 11:08:46.216 INFO kablam! Compiling sudoku-generator v0.1.0 (/source) Oct 15 11:08:46.532 INFO kablam! warning: unused import: `freedom::Freedom` Oct 15 11:08:46.532 INFO kablam! --> src/main.rs:3:5 Oct 15 11:08:46.532 INFO kablam! | Oct 15 11:08:46.532 INFO kablam! 3 | use freedom::Freedom; Oct 15 11:08:46.532 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 15 11:08:46.532 INFO kablam! | Oct 15 11:08:46.532 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 11:08:46.532 INFO kablam! Oct 15 11:08:46.532 INFO kablam! warning: unused import: `problem::Problem` Oct 15 11:08:46.532 INFO kablam! --> src/main.rs:4:5 Oct 15 11:08:46.532 INFO kablam! | Oct 15 11:08:46.532 INFO kablam! 4 | use problem::Problem; Oct 15 11:08:46.532 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 15 11:08:46.532 INFO kablam! Oct 15 11:08:46.575 INFO kablam! warning: unused variable: `j` Oct 15 11:08:46.575 INFO kablam! --> src/freedom.rs:28:9 Oct 15 11:08:46.575 INFO kablam! | Oct 15 11:08:46.575 INFO kablam! 28 | for j in 0..3 { Oct 15 11:08:46.575 INFO kablam! | ^ help: consider using `_j` instead Oct 15 11:08:46.575 INFO kablam! | Oct 15 11:08:46.575 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 11:08:46.575 INFO kablam! Oct 15 11:08:46.580 INFO kablam! warning: constant item is never used: `ORDER` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:1:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 1 | const ORDER: u8 = 3; Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.581 INFO kablam! warning: constant item is never used: `DIM` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:2:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 2 | const DIM: u8 = ORDER * ORDER; Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.581 INFO kablam! warning: constant item is never used: `ELEMENTS` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:3:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 3 | const ELEMENTS: u8 = DIM * DIM; Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.581 INFO kablam! warning: constant item is never used: `ALL_VALUES` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:4:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 4 | const ALL_VALUES: u16 = (1 << DIM) - 1; Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.581 INFO kablam! warning: struct is never constructed: `Freedom` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:7:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 7 | pub struct Freedom { Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.581 INFO kablam! warning: function is never used: `singleton` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:11:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 11 | fn singleton(v: u16) -> u16 { Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.581 INFO kablam! warning: function is never used: `freedom_eliminate` Oct 15 11:08:46.581 INFO kablam! --> src/freedom.rs:16:1 Oct 15 11:08:46.581 INFO kablam! | Oct 15 11:08:46.581 INFO kablam! 16 | fn freedom_eliminate(f: &Freedom, col: u16, row: u16, value: u16) -> Freedom { Oct 15 11:08:46.581 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.581 INFO kablam! Oct 15 11:08:46.587 INFO kablam! warning: function is never used: `create_freedom` Oct 15 11:08:46.587 INFO kablam! --> src/freedom.rs:38:1 Oct 15 11:08:46.587 INFO kablam! | Oct 15 11:08:46.587 INFO kablam! 38 | fn create_freedom(problem: &Problem) -> Freedom { Oct 15 11:08:46.587 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.587 INFO kablam! Oct 15 11:08:46.587 INFO kablam! warning: function is never used: `sanity_check` Oct 15 11:08:46.587 INFO kablam! --> src/freedom.rs:52:1 Oct 15 11:08:46.587 INFO kablam! | Oct 15 11:08:46.587 INFO kablam! 52 | fn sanity_check(problem: &Problem, freedom: &Freedom) -> bool { Oct 15 11:08:46.587 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.587 INFO kablam! Oct 15 11:08:46.587 INFO kablam! warning: function is never used: `search_least_free` Oct 15 11:08:46.587 INFO kablam! --> src/freedom.rs:63:1 Oct 15 11:08:46.587 INFO kablam! | Oct 15 11:08:46.587 INFO kablam! 63 | fn search_least_free(problem: &Problem, freedom: &Freedom) -> u16 { Oct 15 11:08:46.587 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.587 INFO kablam! Oct 15 11:08:46.587 INFO kablam! warning: struct is never constructed: `Problem` Oct 15 11:08:46.587 INFO kablam! --> src/problem.rs:1:1 Oct 15 11:08:46.587 INFO kablam! | Oct 15 11:08:46.587 INFO kablam! 1 | pub struct Problem { Oct 15 11:08:46.587 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 15 11:08:46.587 INFO kablam! Oct 15 11:08:46.811 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.63s Oct 15 11:08:46.812 INFO kablam! su: No module specific data is present Oct 15 11:08:47.105 INFO running `"docker" "rm" "-f" "a15f12f501fec0862c85e421ac4d51b5225fbffe183212246d1db856e6176115"` Oct 15 11:08:47.210 INFO blam! a15f12f501fec0862c85e421ac4d51b5225fbffe183212246d1db856e6176115 Oct 15 11:08:47.212 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/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 11:08:47.443 INFO blam! bce7ca177f801db148e6d87f63290e67cee3396d2198599900f7b0bcd4806bdb Oct 15 11:08:47.467 INFO running `"docker" "start" "-a" "bce7ca177f801db148e6d87f63290e67cee3396d2198599900f7b0bcd4806bdb"` Oct 15 11:08:48.070 INFO kablam! usermod: no changes Oct 15 11:08:48.123 INFO kablam! Compiling sudoku-generator v0.1.0 (/source) Oct 15 11:08:48.515 INFO kablam! warning: unused import: `freedom::Freedom` Oct 15 11:08:48.515 INFO kablam! --> src/main.rs:3:5 Oct 15 11:08:48.515 INFO kablam! | Oct 15 11:08:48.515 INFO kablam! 3 | use freedom::Freedom; Oct 15 11:08:48.515 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 15 11:08:48.515 INFO kablam! | Oct 15 11:08:48.515 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 15 11:08:48.515 INFO kablam! Oct 15 11:08:48.515 INFO kablam! warning: unused import: `problem::Problem` Oct 15 11:08:48.515 INFO kablam! --> src/main.rs:4:5 Oct 15 11:08:48.515 INFO kablam! | Oct 15 11:08:48.515 INFO kablam! 4 | use problem::Problem; Oct 15 11:08:48.515 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 15 11:08:48.515 INFO kablam! Oct 15 11:08:48.567 INFO kablam! warning: unused variable: `j` Oct 15 11:08:48.567 INFO kablam! --> src/freedom.rs:28:9 Oct 15 11:08:48.567 INFO kablam! | Oct 15 11:08:48.567 INFO kablam! 28 | for j in 0..3 { Oct 15 11:08:48.567 INFO kablam! | ^ help: consider using `_j` instead Oct 15 11:08:48.567 INFO kablam! | Oct 15 11:08:48.567 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 15 11:08:48.568 INFO kablam! Oct 15 11:08:48.574 INFO kablam! warning: constant item is never used: `ORDER` Oct 15 11:08:48.574 INFO kablam! --> src/freedom.rs:1:1 Oct 15 11:08:48.574 INFO kablam! | Oct 15 11:08:48.574 INFO kablam! 1 | const ORDER: u8 = 3; Oct 15 11:08:48.574 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! = note: #[warn(dead_code)] on by default Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.575 INFO kablam! warning: constant item is never used: `DIM` Oct 15 11:08:48.575 INFO kablam! --> src/freedom.rs:2:1 Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! 2 | const DIM: u8 = ORDER * ORDER; Oct 15 11:08:48.575 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.575 INFO kablam! warning: constant item is never used: `ELEMENTS` Oct 15 11:08:48.575 INFO kablam! --> src/freedom.rs:3:1 Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! 3 | const ELEMENTS: u8 = DIM * DIM; Oct 15 11:08:48.575 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.575 INFO kablam! warning: constant item is never used: `ALL_VALUES` Oct 15 11:08:48.575 INFO kablam! --> src/freedom.rs:4:1 Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! 4 | const ALL_VALUES: u16 = (1 << DIM) - 1; Oct 15 11:08:48.575 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.575 INFO kablam! warning: struct is never constructed: `Freedom` Oct 15 11:08:48.575 INFO kablam! --> src/freedom.rs:7:1 Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! 7 | pub struct Freedom { Oct 15 11:08:48.575 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.575 INFO kablam! warning: function is never used: `singleton` Oct 15 11:08:48.575 INFO kablam! --> src/freedom.rs:11:1 Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! 11 | fn singleton(v: u16) -> u16 { Oct 15 11:08:48.575 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.575 INFO kablam! warning: function is never used: `freedom_eliminate` Oct 15 11:08:48.575 INFO kablam! --> src/freedom.rs:16:1 Oct 15 11:08:48.575 INFO kablam! | Oct 15 11:08:48.575 INFO kablam! 16 | fn freedom_eliminate(f: &Freedom, col: u16, row: u16, value: u16) -> Freedom { Oct 15 11:08:48.575 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.575 INFO kablam! Oct 15 11:08:48.576 INFO kablam! warning: function is never used: `create_freedom` Oct 15 11:08:48.576 INFO kablam! --> src/freedom.rs:38:1 Oct 15 11:08:48.576 INFO kablam! | Oct 15 11:08:48.576 INFO kablam! 38 | fn create_freedom(problem: &Problem) -> Freedom { Oct 15 11:08:48.576 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.576 INFO kablam! Oct 15 11:08:48.576 INFO kablam! warning: function is never used: `sanity_check` Oct 15 11:08:48.576 INFO kablam! --> src/freedom.rs:52:1 Oct 15 11:08:48.576 INFO kablam! | Oct 15 11:08:48.576 INFO kablam! 52 | fn sanity_check(problem: &Problem, freedom: &Freedom) -> bool { Oct 15 11:08:48.576 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.576 INFO kablam! Oct 15 11:08:48.576 INFO kablam! warning: function is never used: `search_least_free` Oct 15 11:08:48.576 INFO kablam! --> src/freedom.rs:63:1 Oct 15 11:08:48.576 INFO kablam! | Oct 15 11:08:48.576 INFO kablam! 63 | fn search_least_free(problem: &Problem, freedom: &Freedom) -> u16 { Oct 15 11:08:48.576 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.576 INFO kablam! Oct 15 11:08:48.576 INFO kablam! warning: struct is never constructed: `Problem` Oct 15 11:08:48.576 INFO kablam! --> src/problem.rs:1:1 Oct 15 11:08:48.576 INFO kablam! | Oct 15 11:08:48.576 INFO kablam! 1 | pub struct Problem { Oct 15 11:08:48.576 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 15 11:08:48.576 INFO kablam! Oct 15 11:08:49.051 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.96s Oct 15 11:08:49.051 INFO kablam! su: No module specific data is present Oct 15 11:08:49.744 INFO running `"docker" "rm" "-f" "bce7ca177f801db148e6d87f63290e67cee3396d2198599900f7b0bcd4806bdb"` Oct 15 11:08:49.829 INFO blam! bce7ca177f801db148e6d87f63290e67cee3396d2198599900f7b0bcd4806bdb Oct 15 11:08:49.839 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-4/try#40d4795669493f1965de7c44029c69552134fe1f:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/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 11:08:50.022 INFO blam! 811e440f8f6ac2be12fa29a9deb3949e05ea06ad5e96dd698fd77f2785d15afa Oct 15 11:08:50.024 INFO running `"docker" "start" "-a" "811e440f8f6ac2be12fa29a9deb3949e05ea06ad5e96dd698fd77f2785d15afa"` Oct 15 11:08:50.451 INFO kablam! usermod: no changes Oct 15 11:08:50.480 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.01s Oct 15 11:08:50.480 INFO kablam! Running /target/debug/deps/sudoku_generator-6f306ae9c3fe6235 Oct 15 11:08:50.482 INFO blam! Oct 15 11:08:50.482 INFO blam! running 0 tests Oct 15 11:08:50.482 INFO blam! Oct 15 11:08:50.482 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 15 11:08:50.482 INFO blam! Oct 15 11:08:50.483 INFO kablam! su: No module specific data is present Oct 15 11:08:50.765 INFO running `"docker" "rm" "-f" "811e440f8f6ac2be12fa29a9deb3949e05ea06ad5e96dd698fd77f2785d15afa"` Oct 15 11:08:50.851 INFO blam! 811e440f8f6ac2be12fa29a9deb3949e05ea06ad5e96dd698fd77f2785d15afa