Oct 26 22:35:26.883 INFO checking r0xsh/GameBoy-Emulator against try#19f01b935b91481fd445b16b533d2f87661bf12e for pr-55192-2 Oct 26 22:35:26.884 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192-2/worker-7/try#19f01b935b91481fd445b16b533d2f87661bf12e:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/pr-55192-2/try#19f01b935b91481fd445b16b533d2f87661bf12e:/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 +19f01b935b91481fd445b16b533d2f87661bf12e-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 26 22:35:27.271 INFO blam! e4e7e466d66eb27b7cbeb5d7630f2ddc6505963c11fada1bd4e68e3cf8b30454 Oct 26 22:35:27.295 INFO running `"docker" "start" "-a" "e4e7e466d66eb27b7cbeb5d7630f2ddc6505963c11fada1bd4e68e3cf8b30454"` Oct 26 22:35:29.255 INFO kablam! usermod: no changes Oct 26 22:35:29.395 INFO kablam! Checking ws v0.7.1 Oct 26 22:35:31.447 INFO kablam! Checking gameboy v0.1.0 (/source) Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:136:57 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 136 | (Flag::Z, true) => self.set_8(Register8::F, (f | 0b10000000)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:137:57 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 137 | (Flag::N, true) => self.set_8(Register8::F, (f | 0b01000000)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:138:57 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 138 | (Flag::H, true) => self.set_8(Register8::F, (f | 0b00100000)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:139:57 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 139 | (Flag::C, true) => self.set_8(Register8::F, (f | 0b00010000)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:140:58 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 140 | (Flag::Z, false) => self.set_8(Register8::F, (f & 0b01111111)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:141:58 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 141 | (Flag::N, false) => self.set_8(Register8::F, (f & 0b10111111)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:142:58 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.311 INFO kablam! 142 | (Flag::H, false) => self.set_8(Register8::F, (f & 0b11011111)), Oct 26 22:35:32.311 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.311 INFO kablam! Oct 26 22:35:32.311 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.311 INFO kablam! --> src/cpu/mod.rs:143:58 Oct 26 22:35:32.311 INFO kablam! | Oct 26 22:35:32.312 INFO kablam! 143 | (Flag::C, false) => self.set_8(Register8::F, (f & 0b11101111)), Oct 26 22:35:32.312 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.312 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:136:57 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 136 | (Flag::Z, true) => self.set_8(Register8::F, (f | 0b10000000)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:137:57 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 137 | (Flag::N, true) => self.set_8(Register8::F, (f | 0b01000000)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:138:57 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 138 | (Flag::H, true) => self.set_8(Register8::F, (f | 0b00100000)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:139:57 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 139 | (Flag::C, true) => self.set_8(Register8::F, (f | 0b00010000)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:140:58 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 140 | (Flag::Z, false) => self.set_8(Register8::F, (f & 0b01111111)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:141:58 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 141 | (Flag::N, false) => self.set_8(Register8::F, (f & 0b10111111)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:142:58 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 142 | (Flag::H, false) => self.set_8(Register8::F, (f & 0b11011111)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:32.399 INFO kablam! warning: unnecessary parentheses around method argument Oct 26 22:35:32.399 INFO kablam! --> src/cpu/mod.rs:143:58 Oct 26 22:35:32.399 INFO kablam! | Oct 26 22:35:32.399 INFO kablam! 143 | (Flag::C, false) => self.set_8(Register8::F, (f & 0b11101111)), Oct 26 22:35:32.399 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 26 22:35:32.399 INFO kablam! Oct 26 22:35:33.031 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 3.75s Oct 26 22:35:33.031 INFO kablam! su: No module specific data is present Oct 26 22:35:34.087 INFO running `"docker" "rm" "-f" "e4e7e466d66eb27b7cbeb5d7630f2ddc6505963c11fada1bd4e68e3cf8b30454"` Oct 26 22:35:34.404 INFO blam! e4e7e466d66eb27b7cbeb5d7630f2ddc6505963c11fada1bd4e68e3cf8b30454