Oct 13 00:25:08.420 INFO testing sierisimo/algorith-mx-rust against try#40d4795669493f1965de7c44029c69552134fe1f for rustdoc-test-static-cling-1 Oct 13 00:25:08.427 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 13 00:25:08.731 INFO blam! ac89d1ee3b1aed27f5ed22fc2371fa57611156286006b635a42188b9427f3b8e Oct 13 00:25:08.733 INFO running `"docker" "start" "-a" "ac89d1ee3b1aed27f5ed22fc2371fa57611156286006b635a42188b9427f3b8e"` Oct 13 00:25:09.439 INFO kablam! usermod: no changes Oct 13 00:25:09.501 INFO kablam! Compiling algorith-mx v0.1.0 (/source) Oct 13 00:25:09.831 INFO kablam! warning: unnecessary parentheses around `while` condition Oct 13 00:25:09.831 INFO kablam! --> src/main.rs:13:10 Oct 13 00:25:09.831 INFO kablam! | Oct 13 00:25:09.831 INFO kablam! 13 | while(idx_start != idx_end){ Oct 13 00:25:09.831 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 13 00:25:09.832 INFO kablam! | Oct 13 00:25:09.832 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 13 00:25:09.832 INFO kablam! Oct 13 00:25:09.903 INFO kablam! warning: unused variable: `numberToSearch` Oct 13 00:25:09.903 INFO kablam! --> src/main.rs:9:32 Oct 13 00:25:09.904 INFO kablam! | Oct 13 00:25:09.904 INFO kablam! 9 | fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:09.905 INFO kablam! | ^^^^^^^^^^^^^^ help: consider using `_numberToSearch` instead Oct 13 00:25:09.905 INFO kablam! | Oct 13 00:25:09.905 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 00:25:09.906 INFO kablam! Oct 13 00:25:09.906 INFO kablam! warning: variable does not need to be mutable Oct 13 00:25:09.906 INFO kablam! --> src/main.rs:10:9 Oct 13 00:25:09.907 INFO kablam! | Oct 13 00:25:09.907 INFO kablam! 10 | let mut idx_start = 0; Oct 13 00:25:09.907 INFO kablam! | ----^^^^^^^^^ Oct 13 00:25:09.908 INFO kablam! | | Oct 13 00:25:09.908 INFO kablam! | help: remove this `mut` Oct 13 00:25:09.908 INFO kablam! | Oct 13 00:25:09.909 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 00:25:09.909 INFO kablam! Oct 13 00:25:09.909 INFO kablam! warning: variable does not need to be mutable Oct 13 00:25:09.910 INFO kablam! --> src/main.rs:11:9 Oct 13 00:25:09.910 INFO kablam! | Oct 13 00:25:09.910 INFO kablam! 11 | let mut idx_end = arrayOfInts.len(); Oct 13 00:25:09.911 INFO kablam! | ----^^^^^^^ Oct 13 00:25:09.911 INFO kablam! | | Oct 13 00:25:09.911 INFO kablam! | help: remove this `mut` Oct 13 00:25:09.912 INFO kablam! Oct 13 00:25:09.912 INFO kablam! warning: function `bigO` should have a snake case name such as `big_o` Oct 13 00:25:09.912 INFO kablam! --> src/main.rs:9:1 Oct 13 00:25:09.912 INFO kablam! | Oct 13 00:25:09.913 INFO kablam! 9 | / fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:09.913 INFO kablam! 10 | | let mut idx_start = 0; Oct 13 00:25:09.913 INFO kablam! 11 | | let mut idx_end = arrayOfInts.len(); Oct 13 00:25:09.914 INFO kablam! 12 | | Oct 13 00:25:09.914 INFO kablam! ... | Oct 13 00:25:09.914 INFO kablam! 15 | | } Oct 13 00:25:09.915 INFO kablam! 16 | | } Oct 13 00:25:09.915 INFO kablam! | |_^ Oct 13 00:25:09.915 INFO kablam! | Oct 13 00:25:09.916 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 13 00:25:09.916 INFO kablam! Oct 13 00:25:09.916 INFO kablam! warning: variable `arrayOfInts` should have a snake case name such as `array_of_ints` Oct 13 00:25:09.917 INFO kablam! --> src/main.rs:9:9 Oct 13 00:25:09.917 INFO kablam! | Oct 13 00:25:09.917 INFO kablam! 9 | fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:09.917 INFO kablam! | ^^^^^^^^^^^ Oct 13 00:25:09.918 INFO kablam! Oct 13 00:25:09.918 INFO kablam! warning: variable `numberToSearch` should have a snake case name such as `number_to_search` Oct 13 00:25:09.918 INFO kablam! --> src/main.rs:9:32 Oct 13 00:25:09.922 INFO kablam! | Oct 13 00:25:09.923 INFO kablam! 9 | fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:09.923 INFO kablam! | ^^^^^^^^^^^^^^ Oct 13 00:25:09.923 INFO kablam! Oct 13 00:25:10.277 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.79s Oct 13 00:25:10.277 INFO kablam! su: No module specific data is present Oct 13 00:25:10.981 INFO running `"docker" "rm" "-f" "ac89d1ee3b1aed27f5ed22fc2371fa57611156286006b635a42188b9427f3b8e"` Oct 13 00:25:11.239 INFO blam! ac89d1ee3b1aed27f5ed22fc2371fa57611156286006b635a42188b9427f3b8e Oct 13 00:25:11.245 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 13 00:25:11.747 INFO blam! 590c619fff1aece606ab9e8dbf4cc44e5c863b5497e54a207cf1f82815090c0c Oct 13 00:25:11.748 INFO running `"docker" "start" "-a" "590c619fff1aece606ab9e8dbf4cc44e5c863b5497e54a207cf1f82815090c0c"` Oct 13 00:25:12.802 INFO kablam! usermod: no changes Oct 13 00:25:12.841 INFO kablam! Compiling algorith-mx v0.1.0 (/source) Oct 13 00:25:13.267 INFO kablam! warning: unnecessary parentheses around `while` condition Oct 13 00:25:13.267 INFO kablam! --> src/main.rs:13:10 Oct 13 00:25:13.267 INFO kablam! | Oct 13 00:25:13.267 INFO kablam! 13 | while(idx_start != idx_end){ Oct 13 00:25:13.267 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 13 00:25:13.267 INFO kablam! | Oct 13 00:25:13.267 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 13 00:25:13.267 INFO kablam! Oct 13 00:25:13.335 INFO kablam! warning: unused variable: `numberToSearch` Oct 13 00:25:13.335 INFO kablam! --> src/main.rs:9:32 Oct 13 00:25:13.335 INFO kablam! | Oct 13 00:25:13.335 INFO kablam! 9 | fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:13.335 INFO kablam! | ^^^^^^^^^^^^^^ help: consider using `_numberToSearch` instead Oct 13 00:25:13.335 INFO kablam! | Oct 13 00:25:13.335 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 00:25:13.335 INFO kablam! Oct 13 00:25:13.345 INFO kablam! warning: variable does not need to be mutable Oct 13 00:25:13.345 INFO kablam! --> src/main.rs:10:9 Oct 13 00:25:13.345 INFO kablam! | Oct 13 00:25:13.345 INFO kablam! 10 | let mut idx_start = 0; Oct 13 00:25:13.345 INFO kablam! | ----^^^^^^^^^ Oct 13 00:25:13.345 INFO kablam! | | Oct 13 00:25:13.345 INFO kablam! | help: remove this `mut` Oct 13 00:25:13.345 INFO kablam! | Oct 13 00:25:13.345 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 00:25:13.345 INFO kablam! Oct 13 00:25:13.345 INFO kablam! warning: variable does not need to be mutable Oct 13 00:25:13.345 INFO kablam! --> src/main.rs:11:9 Oct 13 00:25:13.345 INFO kablam! | Oct 13 00:25:13.345 INFO kablam! 11 | let mut idx_end = arrayOfInts.len(); Oct 13 00:25:13.345 INFO kablam! | ----^^^^^^^ Oct 13 00:25:13.345 INFO kablam! | | Oct 13 00:25:13.345 INFO kablam! | help: remove this `mut` Oct 13 00:25:13.345 INFO kablam! Oct 13 00:25:13.348 INFO kablam! warning: function `bigO` should have a snake case name such as `big_o` Oct 13 00:25:13.348 INFO kablam! --> src/main.rs:9:1 Oct 13 00:25:13.348 INFO kablam! | Oct 13 00:25:13.348 INFO kablam! 9 | / fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:13.348 INFO kablam! 10 | | let mut idx_start = 0; Oct 13 00:25:13.348 INFO kablam! 11 | | let mut idx_end = arrayOfInts.len(); Oct 13 00:25:13.348 INFO kablam! 12 | | Oct 13 00:25:13.348 INFO kablam! ... | Oct 13 00:25:13.348 INFO kablam! 15 | | } Oct 13 00:25:13.348 INFO kablam! 16 | | } Oct 13 00:25:13.348 INFO kablam! | |_^ Oct 13 00:25:13.349 INFO kablam! | Oct 13 00:25:13.349 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 13 00:25:13.349 INFO kablam! Oct 13 00:25:13.349 INFO kablam! warning: variable `arrayOfInts` should have a snake case name such as `array_of_ints` Oct 13 00:25:13.349 INFO kablam! --> src/main.rs:9:9 Oct 13 00:25:13.349 INFO kablam! | Oct 13 00:25:13.349 INFO kablam! 9 | fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:13.349 INFO kablam! | ^^^^^^^^^^^ Oct 13 00:25:13.349 INFO kablam! Oct 13 00:25:13.349 INFO kablam! warning: variable `numberToSearch` should have a snake case name such as `number_to_search` Oct 13 00:25:13.349 INFO kablam! --> src/main.rs:9:32 Oct 13 00:25:13.349 INFO kablam! | Oct 13 00:25:13.349 INFO kablam! 9 | fn bigO(arrayOfInts: Vec, numberToSearch: u32) { Oct 13 00:25:13.349 INFO kablam! | ^^^^^^^^^^^^^^ Oct 13 00:25:13.349 INFO kablam! Oct 13 00:25:13.791 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.96s Oct 13 00:25:13.791 INFO kablam! su: No module specific data is present Oct 13 00:25:14.499 INFO running `"docker" "rm" "-f" "590c619fff1aece606ab9e8dbf4cc44e5c863b5497e54a207cf1f82815090c0c"` Oct 13 00:25:14.651 INFO blam! 590c619fff1aece606ab9e8dbf4cc44e5c863b5497e54a207cf1f82815090c0c Oct 13 00:25:14.655 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 13 00:25:14.893 INFO blam! 82817fc1edf2280213540d8544e204e1c5038185ed9cbba6257209dd52173f6e Oct 13 00:25:14.895 INFO running `"docker" "start" "-a" "82817fc1edf2280213540d8544e204e1c5038185ed9cbba6257209dd52173f6e"` Oct 13 00:25:15.397 INFO kablam! usermod: no changes Oct 13 00:25:15.417 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.00s Oct 13 00:25:15.417 INFO kablam! Running /target/debug/deps/algorith_mx-b0ca830a1f4363dd Oct 13 00:25:15.420 INFO blam! Oct 13 00:25:15.420 INFO blam! running 0 tests Oct 13 00:25:15.420 INFO blam! Oct 13 00:25:15.420 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 00:25:15.420 INFO blam! Oct 13 00:25:15.422 INFO kablam! su: No module specific data is present Oct 13 00:25:15.668 INFO running `"docker" "rm" "-f" "82817fc1edf2280213540d8544e204e1c5038185ed9cbba6257209dd52173f6e"` Oct 13 00:25:15.762 INFO blam! 82817fc1edf2280213540d8544e204e1c5038185ed9cbba6257209dd52173f6e