Oct 10 16:27:36.716 INFO testing r0xsh/GameBoy-Emulator against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling Oct 10 16:27:36.716 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen Oct 10 16:27:36.718 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-0/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-0/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,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" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 10 16:27:37.238 INFO blam! 92029c7bc4ce57ad7f61c5b209173369e3338d19498ebc652d914bb31857a5a4 Oct 10 16:27:37.245 INFO running `"docker" "start" "-a" "92029c7bc4ce57ad7f61c5b209173369e3338d19498ebc652d914bb31857a5a4"` Oct 10 16:27:38.596 INFO kablam! usermod: no changes Oct 10 16:27:38.724 INFO kablam! Compiling ws v0.7.1 Oct 10 16:27:43.007 INFO kablam! Compiling gameboy v0.1.0 (/source) Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:136:57 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 136 | (Flag::Z, true) => self.set_8(Register8::F, (f | 0b10000000)), Oct 10 16:27:44.440 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 10 16:27:44.440 INFO kablam! Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:137:57 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 137 | (Flag::N, true) => self.set_8(Register8::F, (f | 0b01000000)), Oct 10 16:27:44.440 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.440 INFO kablam! Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:138:57 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 138 | (Flag::H, true) => self.set_8(Register8::F, (f | 0b00100000)), Oct 10 16:27:44.440 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.440 INFO kablam! Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:139:57 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 139 | (Flag::C, true) => self.set_8(Register8::F, (f | 0b00010000)), Oct 10 16:27:44.440 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.440 INFO kablam! Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:140:58 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 140 | (Flag::Z, false) => self.set_8(Register8::F, (f & 0b01111111)), Oct 10 16:27:44.440 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.440 INFO kablam! Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:141:58 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 141 | (Flag::N, false) => self.set_8(Register8::F, (f & 0b10111111)), Oct 10 16:27:44.440 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.440 INFO kablam! Oct 10 16:27:44.440 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.440 INFO kablam! --> src/cpu/mod.rs:142:58 Oct 10 16:27:44.440 INFO kablam! | Oct 10 16:27:44.440 INFO kablam! 142 | (Flag::H, false) => self.set_8(Register8::F, (f & 0b11011111)), Oct 10 16:27:44.441 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.441 INFO kablam! Oct 10 16:27:44.441 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:44.441 INFO kablam! --> src/cpu/mod.rs:143:58 Oct 10 16:27:44.441 INFO kablam! | Oct 10 16:27:44.441 INFO kablam! 143 | (Flag::C, false) => self.set_8(Register8::F, (f & 0b11101111)), Oct 10 16:27:44.441 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:44.441 INFO kablam! Oct 10 16:27:47.314 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 8.69s Oct 10 16:27:47.324 INFO kablam! su: No module specific data is present Oct 10 16:27:48.281 INFO running `"docker" "rm" "-f" "92029c7bc4ce57ad7f61c5b209173369e3338d19498ebc652d914bb31857a5a4"` Oct 10 16:27:48.577 INFO blam! 92029c7bc4ce57ad7f61c5b209173369e3338d19498ebc652d914bb31857a5a4 Oct 10 16:27:48.584 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run Oct 10 16:27:48.585 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-0/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-0/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,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" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 10 16:27:48.994 INFO blam! c02cf92cda910dacf48b93cf565368c0ca6afefe781681ed9849596601af1158 Oct 10 16:27:48.996 INFO running `"docker" "start" "-a" "c02cf92cda910dacf48b93cf565368c0ca6afefe781681ed9849596601af1158"` Oct 10 16:27:50.336 INFO kablam! usermod: no changes Oct 10 16:27:50.536 INFO kablam! Compiling gameboy v0.1.0 (/source) Oct 10 16:27:51.977 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.981 INFO kablam! --> src/cpu/mod.rs:136:57 Oct 10 16:27:51.981 INFO kablam! | Oct 10 16:27:51.981 INFO kablam! 136 | (Flag::Z, true) => self.set_8(Register8::F, (f | 0b10000000)), Oct 10 16:27:51.982 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.982 INFO kablam! | Oct 10 16:27:51.982 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 10 16:27:51.982 INFO kablam! Oct 10 16:27:51.983 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.983 INFO kablam! --> src/cpu/mod.rs:137:57 Oct 10 16:27:51.983 INFO kablam! | Oct 10 16:27:51.984 INFO kablam! 137 | (Flag::N, true) => self.set_8(Register8::F, (f | 0b01000000)), Oct 10 16:27:51.984 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.984 INFO kablam! Oct 10 16:27:51.985 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.985 INFO kablam! --> src/cpu/mod.rs:138:57 Oct 10 16:27:51.985 INFO kablam! | Oct 10 16:27:51.985 INFO kablam! 138 | (Flag::H, true) => self.set_8(Register8::F, (f | 0b00100000)), Oct 10 16:27:51.986 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.986 INFO kablam! Oct 10 16:27:51.986 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.987 INFO kablam! --> src/cpu/mod.rs:139:57 Oct 10 16:27:51.987 INFO kablam! | Oct 10 16:27:51.987 INFO kablam! 139 | (Flag::C, true) => self.set_8(Register8::F, (f | 0b00010000)), Oct 10 16:27:51.987 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.988 INFO kablam! Oct 10 16:27:51.988 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.988 INFO kablam! --> src/cpu/mod.rs:140:58 Oct 10 16:27:51.989 INFO kablam! | Oct 10 16:27:51.989 INFO kablam! 140 | (Flag::Z, false) => self.set_8(Register8::F, (f & 0b01111111)), Oct 10 16:27:51.989 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.989 INFO kablam! Oct 10 16:27:51.990 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.990 INFO kablam! --> src/cpu/mod.rs:141:58 Oct 10 16:27:51.990 INFO kablam! | Oct 10 16:27:51.990 INFO kablam! 141 | (Flag::N, false) => self.set_8(Register8::F, (f & 0b10111111)), Oct 10 16:27:51.991 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.991 INFO kablam! Oct 10 16:27:51.991 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.991 INFO kablam! --> src/cpu/mod.rs:142:58 Oct 10 16:27:51.992 INFO kablam! | Oct 10 16:27:51.992 INFO kablam! 142 | (Flag::H, false) => self.set_8(Register8::F, (f & 0b11011111)), Oct 10 16:27:51.992 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.992 INFO kablam! Oct 10 16:27:51.993 INFO kablam! warning: unnecessary parentheses around method argument Oct 10 16:27:51.993 INFO kablam! --> src/cpu/mod.rs:143:58 Oct 10 16:27:51.993 INFO kablam! | Oct 10 16:27:51.993 INFO kablam! 143 | (Flag::C, false) => self.set_8(Register8::F, (f & 0b11101111)), Oct 10 16:27:51.994 INFO kablam! | ^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 10 16:27:51.994 INFO kablam! Oct 10 16:27:53.482 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 3.09s Oct 10 16:27:53.487 INFO kablam! su: No module specific data is present Oct 10 16:27:54.260 INFO running `"docker" "rm" "-f" "c02cf92cda910dacf48b93cf565368c0ca6afefe781681ed9849596601af1158"` Oct 10 16:27:54.540 INFO blam! c02cf92cda910dacf48b93cf565368c0ca6afefe781681ed9849596601af1158 Oct 10 16:27:54.545 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen Oct 10 16:27:54.546 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-0/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-0/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,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" "CMD=cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "1536M" "--network" "none" "crater"` Oct 10 16:27:54.985 INFO blam! f347a7a968d6dfadc68430904960cb627fe6f3137200540bbfab31560c0cac87 Oct 10 16:27:54.988 INFO running `"docker" "start" "-a" "f347a7a968d6dfadc68430904960cb627fe6f3137200540bbfab31560c0cac87"` Oct 10 16:27:56.088 INFO kablam! usermod: no changes Oct 10 16:27:56.167 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.04s Oct 10 16:27:56.180 INFO kablam! Running /target/debug/deps/gameboy-fe6677e225d4be3d Oct 10 16:27:56.188 INFO blam! Oct 10 16:27:56.188 INFO blam! running 4 tests Oct 10 16:27:56.200 INFO blam! test cpu::flags ... ok Oct 10 16:27:56.200 INFO blam! test gameboy::debugger::handle_cmd ... ok Oct 10 16:27:56.220 INFO blam! test cpu::set_get ... ok Oct 10 16:27:56.225 INFO blam! test memory::read_write ... ok Oct 10 16:27:56.225 INFO blam! Oct 10 16:27:56.225 INFO blam! test result: ok. 4 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 10 16:27:56.225 INFO blam! Oct 10 16:27:56.236 INFO kablam! su: No module specific data is present Oct 10 16:27:57.412 INFO running `"docker" "rm" "-f" "f347a7a968d6dfadc68430904960cb627fe6f3137200540bbfab31560c0cac87"` Oct 10 16:27:57.660 INFO blam! f347a7a968d6dfadc68430904960cb627fe6f3137200540bbfab31560c0cac87