Oct 11 06:13:44.923 INFO testing JacobEmmersonStovall/Stove-Chip8 against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling Oct 11 06:13:44.923 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt build --frozen Oct 11 06:13:44.923 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-4/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 11 06:13:45.155 INFO blam! 8f5633ccdb8e6b2c427aa7374fd832d7b6b1a5ce85f600f4a8f9d0c983f05a9a Oct 11 06:13:45.161 INFO running `"docker" "start" "-a" "8f5633ccdb8e6b2c427aa7374fd832d7b6b1a5ce85f600f4a8f9d0c983f05a9a"` Oct 11 06:13:45.641 INFO kablam! usermod: no changes Oct 11 06:13:45.704 INFO kablam! Compiling minifb v0.9.2 Oct 11 06:13:45.712 INFO kablam! Compiling x11-dl v2.14.0 Oct 11 06:13:53.443 INFO kablam! Compiling chip8-emulator-stove v0.1.0 (/source) Oct 11 06:13:54.363 INFO kablam! warning: unnecessary parentheses around method argument Oct 11 06:13:54.363 INFO kablam! --> src/main.rs:36:61 Oct 11 06:13:54.363 INFO kablam! | Oct 11 06:13:54.363 INFO kablam! 36 | let value1 = split_mem_chunk_into_nibbles(mem.get_value((pc as usize))); Oct 11 06:13:54.363 INFO kablam! | ^^^^^^^^^^^^^ help: remove these parentheses Oct 11 06:13:54.363 INFO kablam! | Oct 11 06:13:54.363 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 11 06:13:54.363 INFO kablam! Oct 11 06:13:54.363 INFO kablam! warning: unnecessary parentheses around method argument Oct 11 06:13:54.363 INFO kablam! --> src/main.rs:37:61 Oct 11 06:13:54.363 INFO kablam! | Oct 11 06:13:54.363 INFO kablam! 37 | let value2 = split_mem_chunk_into_nibbles(mem.get_value(((pc+1) as usize))); Oct 11 06:13:54.363 INFO kablam! | ^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 11 06:13:54.363 INFO kablam! Oct 11 06:13:54.418 INFO kablam! warning: unused variable: `disp` Oct 11 06:13:54.418 INFO kablam! --> src/main.rs:34:72 Oct 11 06:13:54.418 INFO kablam! | Oct 11 06:13:54.418 INFO kablam! 34 | fn execute_instruction(mem:&memory::Memory, reg:®isters::Registers, disp:&display::Display){ Oct 11 06:13:54.418 INFO kablam! | ^^^^ help: consider using `_disp` instead Oct 11 06:13:54.418 INFO kablam! | Oct 11 06:13:54.418 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 11 06:13:54.418 INFO kablam! Oct 11 06:13:54.421 INFO kablam! warning: variable does not need to be mutable Oct 11 06:13:54.421 INFO kablam! --> src/main.rs:19:9 Oct 11 06:13:54.421 INFO kablam! | Oct 11 06:13:54.421 INFO kablam! 19 | let mut display = display::Display::new(); Oct 11 06:13:54.421 INFO kablam! | ----^^^^^^^ Oct 11 06:13:54.421 INFO kablam! | | Oct 11 06:13:54.421 INFO kablam! | help: remove this `mut` Oct 11 06:13:54.421 INFO kablam! | Oct 11 06:13:54.421 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 11 06:13:54.421 INFO kablam! Oct 11 06:13:54.440 INFO kablam! warning: method is never used: `get_general_register_value` Oct 11 06:13:54.440 INFO kablam! --> src/registers.rs:27:5 Oct 11 06:13:54.440 INFO kablam! | Oct 11 06:13:54.440 INFO kablam! 27 | pub fn get_general_register_value(&self, index:usize) -> u8{ Oct 11 06:13:54.440 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.440 INFO kablam! | Oct 11 06:13:54.440 INFO kablam! = note: #[warn(dead_code)] on by default Oct 11 06:13:54.440 INFO kablam! Oct 11 06:13:54.440 INFO kablam! warning: method is never used: `peek_at_stack` Oct 11 06:13:54.440 INFO kablam! --> src/registers.rs:45:5 Oct 11 06:13:54.440 INFO kablam! | Oct 11 06:13:54.440 INFO kablam! 45 | pub fn peek_at_stack(&self) -> u16 { Oct 11 06:13:54.440 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.440 INFO kablam! Oct 11 06:13:54.440 INFO kablam! warning: method is never used: `pop_from_stack` Oct 11 06:13:54.440 INFO kablam! --> src/registers.rs:49:5 Oct 11 06:13:54.440 INFO kablam! | Oct 11 06:13:54.440 INFO kablam! 49 | pub fn pop_from_stack(&mut self) -> u16 { Oct 11 06:13:54.440 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.440 INFO kablam! Oct 11 06:13:54.440 INFO kablam! warning: method is never used: `set_pc` Oct 11 06:13:54.440 INFO kablam! --> src/registers.rs:60:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 60 | pub fn set_pc(&mut self, value:u16){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `set_i` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:68:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 68 | pub fn set_i(&mut self, value:u16){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `get_i` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:72:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 72 | pub fn get_i(&self) -> u16 { Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `set_delay` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:76:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 76 | pub fn set_delay(&mut self, value:u8){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `get_delay` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:80:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 80 | pub fn get_delay(&self) -> u8 { Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `decrement_delay` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:84:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 84 | pub fn decrement_delay(&mut self){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `set_sound` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:90:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 90 | pub fn set_sound(&mut self, value:u8){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `get_sound` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:94:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 94 | pub fn get_sound(&self) -> u8 { Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `decrement_sound` Oct 11 06:13:54.441 INFO kablam! --> src/registers.rs:98:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 98 | pub fn decrement_sound(&mut self){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: field is never used: `display_window` Oct 11 06:13:54.441 INFO kablam! --> src/display.rs:5:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 5 | display_window: Window Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `update_display` Oct 11 06:13:54.441 INFO kablam! --> src/display.rs:22:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 22 | pub fn update_display(&mut self,buffer:Vec){ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.441 INFO kablam! warning: method is never used: `get_is_open` Oct 11 06:13:54.441 INFO kablam! --> src/display.rs:26:5 Oct 11 06:13:54.441 INFO kablam! | Oct 11 06:13:54.441 INFO kablam! 26 | pub fn get_is_open(&self) -> bool{ Oct 11 06:13:54.441 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:54.441 INFO kablam! Oct 11 06:13:54.444 INFO kablam! warning: variable `returnValue` should have a snake case name such as `return_value` Oct 11 06:13:54.444 INFO kablam! --> src/registers.rs:50:13 Oct 11 06:13:54.444 INFO kablam! | Oct 11 06:13:54.444 INFO kablam! 50 | let returnValue = self.stack[(self.sp as usize)]; Oct 11 06:13:54.444 INFO kablam! | ^^^^^^^^^^^ Oct 11 06:13:54.444 INFO kablam! | Oct 11 06:13:54.445 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 11 06:13:54.445 INFO kablam! Oct 11 06:13:54.445 INFO kablam! warning: function `createDisplay` should have a snake case name such as `create_display` Oct 11 06:13:54.445 INFO kablam! --> src/display.rs:8:1 Oct 11 06:13:54.445 INFO kablam! | Oct 11 06:13:54.445 INFO kablam! 8 | / fn createDisplay() -> Window{ Oct 11 06:13:54.445 INFO kablam! 9 | | let WINDOW_WIDTH = 640; Oct 11 06:13:54.445 INFO kablam! 10 | | let WINDOW_HEIGHT = 360; Oct 11 06:13:54.445 INFO kablam! 11 | | let window = Window::new("Stove Chip8", WINDOW_WIDTH, WINDOW_HEIGHT, WindowOptions::default()).unwrap(); Oct 11 06:13:54.445 INFO kablam! 12 | | window Oct 11 06:13:54.445 INFO kablam! 13 | | } Oct 11 06:13:54.445 INFO kablam! | |_^ Oct 11 06:13:54.445 INFO kablam! Oct 11 06:13:54.445 INFO kablam! warning: variable `WINDOW_WIDTH` should have a snake case name such as `window_width` Oct 11 06:13:54.445 INFO kablam! --> src/display.rs:9:9 Oct 11 06:13:54.445 INFO kablam! | Oct 11 06:13:54.445 INFO kablam! 9 | let WINDOW_WIDTH = 640; Oct 11 06:13:54.445 INFO kablam! | ^^^^^^^^^^^^ Oct 11 06:13:54.445 INFO kablam! Oct 11 06:13:54.445 INFO kablam! warning: variable `WINDOW_HEIGHT` should have a snake case name such as `window_height` Oct 11 06:13:54.445 INFO kablam! --> src/display.rs:10:9 Oct 11 06:13:54.445 INFO kablam! | Oct 11 06:13:54.445 INFO kablam! 10 | let WINDOW_HEIGHT = 360; Oct 11 06:13:54.445 INFO kablam! | ^^^^^^^^^^^^^ Oct 11 06:13:54.445 INFO kablam! Oct 11 06:13:54.900 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 9.23s Oct 11 06:13:54.900 INFO kablam! su: No module specific data is present Oct 11 06:13:55.181 INFO running `"docker" "rm" "-f" "8f5633ccdb8e6b2c427aa7374fd832d7b6b1a5ce85f600f4a8f9d0c983f05a9a"` Oct 11 06:13:55.282 INFO blam! 8f5633ccdb8e6b2c427aa7374fd832d7b6b1a5ce85f600f4a8f9d0c983f05a9a Oct 11 06:13:55.286 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen --no-run Oct 11 06:13:55.286 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-4/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 11 06:13:55.503 INFO blam! 85246808f6cb384aa8271e0d7f835209d8911cb8a747dae69efe278eaff232fa Oct 11 06:13:55.510 INFO running `"docker" "start" "-a" "85246808f6cb384aa8271e0d7f835209d8911cb8a747dae69efe278eaff232fa"` Oct 11 06:13:56.185 INFO kablam! usermod: no changes Oct 11 06:13:56.328 INFO kablam! Compiling chip8-emulator-stove v0.1.0 (/source) Oct 11 06:13:57.390 INFO kablam! warning: unnecessary parentheses around method argument Oct 11 06:13:57.390 INFO kablam! --> src/main.rs:36:61 Oct 11 06:13:57.390 INFO kablam! | Oct 11 06:13:57.390 INFO kablam! 36 | let value1 = split_mem_chunk_into_nibbles(mem.get_value((pc as usize))); Oct 11 06:13:57.390 INFO kablam! | ^^^^^^^^^^^^^ help: remove these parentheses Oct 11 06:13:57.390 INFO kablam! | Oct 11 06:13:57.390 INFO kablam! = note: #[warn(unused_parens)] on by default Oct 11 06:13:57.390 INFO kablam! Oct 11 06:13:57.390 INFO kablam! warning: unnecessary parentheses around method argument Oct 11 06:13:57.390 INFO kablam! --> src/main.rs:37:61 Oct 11 06:13:57.390 INFO kablam! | Oct 11 06:13:57.390 INFO kablam! 37 | let value2 = split_mem_chunk_into_nibbles(mem.get_value(((pc+1) as usize))); Oct 11 06:13:57.390 INFO kablam! | ^^^^^^^^^^^^^^^^^ help: remove these parentheses Oct 11 06:13:57.390 INFO kablam! Oct 11 06:13:57.476 INFO kablam! warning: unused variable: `disp` Oct 11 06:13:57.476 INFO kablam! --> src/main.rs:34:72 Oct 11 06:13:57.476 INFO kablam! | Oct 11 06:13:57.476 INFO kablam! 34 | fn execute_instruction(mem:&memory::Memory, reg:®isters::Registers, disp:&display::Display){ Oct 11 06:13:57.476 INFO kablam! | ^^^^ help: consider using `_disp` instead Oct 11 06:13:57.476 INFO kablam! | Oct 11 06:13:57.476 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 11 06:13:57.476 INFO kablam! Oct 11 06:13:57.478 INFO kablam! warning: variable does not need to be mutable Oct 11 06:13:57.478 INFO kablam! --> src/main.rs:19:9 Oct 11 06:13:57.478 INFO kablam! | Oct 11 06:13:57.478 INFO kablam! 19 | let mut display = display::Display::new(); Oct 11 06:13:57.478 INFO kablam! | ----^^^^^^^ Oct 11 06:13:57.478 INFO kablam! | | Oct 11 06:13:57.478 INFO kablam! | help: remove this `mut` Oct 11 06:13:57.478 INFO kablam! | Oct 11 06:13:57.479 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 11 06:13:57.479 INFO kablam! Oct 11 06:13:57.508 INFO kablam! warning: method is never used: `get_general_register_value` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:27:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 27 | pub fn get_general_register_value(&self, index:usize) -> u8{ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! = note: #[warn(dead_code)] on by default Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `peek_at_stack` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:45:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 45 | pub fn peek_at_stack(&self) -> u16 { Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `pop_from_stack` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:49:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 49 | pub fn pop_from_stack(&mut self) -> u16 { Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `set_pc` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:60:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 60 | pub fn set_pc(&mut self, value:u16){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `set_i` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:68:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 68 | pub fn set_i(&mut self, value:u16){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `get_i` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:72:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 72 | pub fn get_i(&self) -> u16 { Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `set_delay` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:76:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 76 | pub fn set_delay(&mut self, value:u8){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `get_delay` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:80:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 80 | pub fn get_delay(&self) -> u8 { Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `decrement_delay` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:84:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 84 | pub fn decrement_delay(&mut self){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `set_sound` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:90:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 90 | pub fn set_sound(&mut self, value:u8){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `get_sound` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:94:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 94 | pub fn get_sound(&self) -> u8 { Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `decrement_sound` Oct 11 06:13:57.509 INFO kablam! --> src/registers.rs:98:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 98 | pub fn decrement_sound(&mut self){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: field is never used: `display_window` Oct 11 06:13:57.509 INFO kablam! --> src/display.rs:5:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 5 | display_window: Window Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `update_display` Oct 11 06:13:57.509 INFO kablam! --> src/display.rs:22:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 22 | pub fn update_display(&mut self,buffer:Vec){ Oct 11 06:13:57.509 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.509 INFO kablam! Oct 11 06:13:57.509 INFO kablam! warning: method is never used: `get_is_open` Oct 11 06:13:57.509 INFO kablam! --> src/display.rs:26:5 Oct 11 06:13:57.509 INFO kablam! | Oct 11 06:13:57.509 INFO kablam! 26 | pub fn get_is_open(&self) -> bool{ Oct 11 06:13:57.510 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 11 06:13:57.510 INFO kablam! Oct 11 06:13:57.510 INFO kablam! warning: variable `returnValue` should have a snake case name such as `return_value` Oct 11 06:13:57.510 INFO kablam! --> src/registers.rs:50:13 Oct 11 06:13:57.510 INFO kablam! | Oct 11 06:13:57.510 INFO kablam! 50 | let returnValue = self.stack[(self.sp as usize)]; Oct 11 06:13:57.510 INFO kablam! | ^^^^^^^^^^^ Oct 11 06:13:57.510 INFO kablam! | Oct 11 06:13:57.510 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 11 06:13:57.510 INFO kablam! Oct 11 06:13:57.520 INFO kablam! warning: function `createDisplay` should have a snake case name such as `create_display` Oct 11 06:13:57.520 INFO kablam! --> src/display.rs:8:1 Oct 11 06:13:57.520 INFO kablam! | Oct 11 06:13:57.520 INFO kablam! 8 | / fn createDisplay() -> Window{ Oct 11 06:13:57.520 INFO kablam! 9 | | let WINDOW_WIDTH = 640; Oct 11 06:13:57.520 INFO kablam! 10 | | let WINDOW_HEIGHT = 360; Oct 11 06:13:57.520 INFO kablam! 11 | | let window = Window::new("Stove Chip8", WINDOW_WIDTH, WINDOW_HEIGHT, WindowOptions::default()).unwrap(); Oct 11 06:13:57.520 INFO kablam! 12 | | window Oct 11 06:13:57.520 INFO kablam! 13 | | } Oct 11 06:13:57.520 INFO kablam! | |_^ Oct 11 06:13:57.520 INFO kablam! Oct 11 06:13:57.521 INFO kablam! warning: variable `WINDOW_WIDTH` should have a snake case name such as `window_width` Oct 11 06:13:57.521 INFO kablam! --> src/display.rs:9:9 Oct 11 06:13:57.521 INFO kablam! | Oct 11 06:13:57.521 INFO kablam! 9 | let WINDOW_WIDTH = 640; Oct 11 06:13:57.521 INFO kablam! | ^^^^^^^^^^^^ Oct 11 06:13:57.521 INFO kablam! Oct 11 06:13:57.521 INFO kablam! warning: variable `WINDOW_HEIGHT` should have a snake case name such as `window_height` Oct 11 06:13:57.521 INFO kablam! --> src/display.rs:10:9 Oct 11 06:13:57.521 INFO kablam! | Oct 11 06:13:57.521 INFO kablam! 10 | let WINDOW_HEIGHT = 360; Oct 11 06:13:57.521 INFO kablam! | ^^^^^^^^^^^^^ Oct 11 06:13:57.521 INFO kablam! Oct 11 06:13:57.952 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.73s Oct 11 06:13:57.953 INFO kablam! su: No module specific data is present Oct 11 06:13:58.480 INFO running `"docker" "rm" "-f" "85246808f6cb384aa8271e0d7f835209d8911cb8a747dae69efe278eaff232fa"` Oct 11 06:13:58.716 INFO blam! 85246808f6cb384aa8271e0d7f835209d8911cb8a747dae69efe278eaff232fa Oct 11 06:13:58.722 INFO running: cargo +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-alt test --frozen Oct 11 06:13:58.722 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/test-source/worker-4/rustdoc-test-static-cling/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling/worker-4/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 11 06:13:59.062 INFO blam! 2a1caed6947a7f8c8a64ce00c856546b333d0db56538a388bba20e543317a0b5 Oct 11 06:13:59.073 INFO running `"docker" "start" "-a" "2a1caed6947a7f8c8a64ce00c856546b333d0db56538a388bba20e543317a0b5"` Oct 11 06:13:59.838 INFO kablam! usermod: no changes Oct 11 06:13:59.903 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.04s Oct 11 06:13:59.915 INFO kablam! Running /target/debug/deps/chip8_emulator_stove-d8bcde08590807e5 Oct 11 06:13:59.920 INFO kablam! su: No module specific data is present Oct 11 06:13:59.920 INFO blam! Oct 11 06:13:59.920 INFO blam! running 0 tests Oct 11 06:13:59.920 INFO blam! Oct 11 06:13:59.920 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 11 06:13:59.920 INFO blam! Oct 11 06:14:00.508 INFO running `"docker" "rm" "-f" "2a1caed6947a7f8c8a64ce00c856546b333d0db56538a388bba20e543317a0b5"` Oct 11 06:14:00.757 INFO blam! 2a1caed6947a7f8c8a64ce00c856546b333d0db56538a388bba20e543317a0b5