Oct 13 12:48:37.311 INFO checking lase-0.0.2 against try#4021bd0b3c5815b087d6db10ce461e7e4854ade7 for pr-54977 Oct 13 12:48:37.311 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-54977/worker-7/try#4021bd0b3c5815b087d6db10ce461e7e4854ade7:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/pr-54977/try#4021bd0b3c5815b087d6db10ce461e7e4854ade7:/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 +4021bd0b3c5815b087d6db10ce461e7e4854ade7-alt check --frozen --all --all-targets" "-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 12:48:37.656 INFO blam! 9d3ac7affd2a049a95355e7b7181c11be500329d13d65ed74427a268788ede0e Oct 13 12:48:37.656 INFO running `"docker" "start" "-a" "9d3ac7affd2a049a95355e7b7181c11be500329d13d65ed74427a268788ede0e"` Oct 13 12:48:38.221 INFO kablam! usermod: no changes Oct 13 12:48:38.261 INFO kablam! Checking point v0.3.1 Oct 13 12:48:38.262 INFO kablam! Checking ilda v0.0.2 Oct 13 12:48:39.004 INFO kablam! Checking etherdream v0.1.1 Oct 13 12:48:40.064 INFO kablam! Checking lase v0.0.2 (/source) Oct 13 12:48:42.841 INFO kablam! warning: unused import: `lase::Dac` Oct 13 12:48:42.842 INFO kablam! --> examples/ball.rs:5:5 Oct 13 12:48:42.843 INFO kablam! | Oct 13 12:48:42.843 INFO kablam! 5 | use lase::Dac; Oct 13 12:48:42.843 INFO kablam! | ^^^^^^^^^ Oct 13 12:48:42.844 INFO kablam! | Oct 13 12:48:42.844 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 12:48:42.844 INFO kablam! Oct 13 12:48:42.844 INFO kablam! warning: unused import: `lase::tools::ETHERDREAM_Y_MAX` Oct 13 12:48:42.845 INFO kablam! --> examples/ball.rs:10:5 Oct 13 12:48:42.845 INFO kablam! | Oct 13 12:48:42.845 INFO kablam! 10 | use lase::tools::ETHERDREAM_Y_MAX; Oct 13 12:48:42.845 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 12:48:42.846 INFO kablam! Oct 13 12:48:42.846 INFO kablam! warning: unused import: `lase::tools::ETHERDREAM_Y_MIN` Oct 13 12:48:42.846 INFO kablam! --> examples/ball.rs:11:5 Oct 13 12:48:42.846 INFO kablam! | Oct 13 12:48:42.847 INFO kablam! 11 | use lase::tools::ETHERDREAM_Y_MIN; Oct 13 12:48:42.847 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 12:48:42.847 INFO kablam! Oct 13 12:48:42.847 INFO kablam! warning: use of deprecated item 'std::thread::sleep_ms': replaced by `std::thread::sleep` Oct 13 12:48:42.848 INFO kablam! --> examples/ball.rs:124:7 Oct 13 12:48:42.848 INFO kablam! | Oct 13 12:48:42.848 INFO kablam! 124 | thread::sleep_ms(10); Oct 13 12:48:42.848 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 13 12:48:42.849 INFO kablam! | Oct 13 12:48:42.849 INFO kablam! = note: #[warn(deprecated)] on by default Oct 13 12:48:42.849 INFO kablam! Oct 13 12:48:42.917 INFO kablam! warning: variable does not need to be mutable Oct 13 12:48:42.917 INFO kablam! --> examples/ball.rs:115:7 Oct 13 12:48:42.917 INFO kablam! | Oct 13 12:48:42.918 INFO kablam! 115 | let mut circle = Arc::new(RwLock::new(Circle::new(8000))); Oct 13 12:48:42.918 INFO kablam! | ----^^^^^^ Oct 13 12:48:42.918 INFO kablam! | | Oct 13 12:48:42.918 INFO kablam! | help: remove this `mut` Oct 13 12:48:42.919 INFO kablam! | Oct 13 12:48:42.919 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 12:48:42.919 INFO kablam! Oct 13 12:48:42.919 INFO kablam! warning: variable does not need to be mutable Oct 13 12:48:42.920 INFO kablam! --> examples/ball.rs:116:7 Oct 13 12:48:42.920 INFO kablam! | Oct 13 12:48:42.920 INFO kablam! 116 | let mut circle2 = circle.clone(); Oct 13 12:48:42.920 INFO kablam! | ----^^^^^^^ Oct 13 12:48:42.921 INFO kablam! | | Oct 13 12:48:42.921 INFO kablam! | help: remove this `mut` Oct 13 12:48:42.921 INFO kablam! Oct 13 12:48:42.929 INFO kablam! warning: unused `std::result::Result` which must be used Oct 13 12:48:42.929 INFO kablam! --> examples/ball.rs:128:3 Oct 13 12:48:42.929 INFO kablam! | Oct 13 12:48:42.929 INFO kablam! 128 | / dac.play_function(|num_points: u16| { Oct 13 12:48:42.930 INFO kablam! 129 | | circle2.read().unwrap().get_points(num_points, &mut pos) Oct 13 12:48:42.930 INFO kablam! 130 | | }); Oct 13 12:48:42.930 INFO kablam! | |_____^ Oct 13 12:48:42.931 INFO kablam! | Oct 13 12:48:42.931 INFO kablam! = note: #[warn(unused_must_use)] on by default Oct 13 12:48:42.931 INFO kablam! = note: this `Result` may be an `Err` variant, which should be handled Oct 13 12:48:42.931 INFO kablam! Oct 13 12:48:43.347 INFO kablam! warning: unused import: `lase::Dac` Oct 13 12:48:43.347 INFO kablam! --> examples/square.rs:6:5 Oct 13 12:48:43.347 INFO kablam! | Oct 13 12:48:43.347 INFO kablam! 6 | use lase::Dac; Oct 13 12:48:43.347 INFO kablam! | ^^^^^^^^^ Oct 13 12:48:43.347 INFO kablam! | Oct 13 12:48:43.347 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 12:48:43.347 INFO kablam! Oct 13 12:48:43.368 INFO kablam! warning: unused import: `lase::Dac` Oct 13 12:48:43.369 INFO kablam! --> examples/circle.rs:5:5 Oct 13 12:48:43.369 INFO kablam! | Oct 13 12:48:43.369 INFO kablam! 5 | use lase::Dac; Oct 13 12:48:43.369 INFO kablam! | ^^^^^^^^^ Oct 13 12:48:43.369 INFO kablam! | Oct 13 12:48:43.369 INFO kablam! = note: #[warn(unused_imports)] on by default Oct 13 12:48:43.370 INFO kablam! Oct 13 12:48:43.405 INFO kablam! warning: static variable `pos` should have an upper case name such as `POS` Oct 13 12:48:43.405 INFO kablam! --> examples/circle.rs:20:3 Oct 13 12:48:43.405 INFO kablam! | Oct 13 12:48:43.405 INFO kablam! 20 | static mut pos: i32 = 0; Oct 13 12:48:43.405 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 13 12:48:43.406 INFO kablam! | Oct 13 12:48:43.406 INFO kablam! = note: #[warn(non_upper_case_globals)] on by default Oct 13 12:48:43.406 INFO kablam! Oct 13 12:48:43.448 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 5.20s Oct 13 12:48:43.449 INFO kablam! su: No module specific data is present Oct 13 12:48:44.262 INFO running `"docker" "rm" "-f" "9d3ac7affd2a049a95355e7b7181c11be500329d13d65ed74427a268788ede0e"` Oct 13 12:48:44.592 INFO blam! 9d3ac7affd2a049a95355e7b7181c11be500329d13d65ed74427a268788ede0e