Oct 13 06:08:25.674 INFO testing mxbrt/rust-chip-8 against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 13 06:08:25.675 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 06:08:26.183 INFO blam! f139d45ab554dd85fa0589791475e90bbae22fd887f76cf89340407f0250b4fb Oct 13 06:08:26.185 INFO running `"docker" "start" "-a" "f139d45ab554dd85fa0589791475e90bbae22fd887f76cf89340407f0250b4fb"` Oct 13 06:08:27.103 INFO kablam! usermod: no changes Oct 13 06:08:27.134 INFO kablam! Compiling rust-chip-8 v0.1.0 (/source) Oct 13 06:08:27.415 INFO kablam! warning: unused variable: `chip` Oct 13 06:08:27.415 INFO kablam! --> src/main.rs:97:13 Oct 13 06:08:27.415 INFO kablam! | Oct 13 06:08:27.415 INFO kablam! 97 | let mut chip = Chip8::new(game_path); Oct 13 06:08:27.415 INFO kablam! | ^^^^ help: consider using `_chip` instead Oct 13 06:08:27.415 INFO kablam! | Oct 13 06:08:27.415 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 06:08:27.415 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: variable does not need to be mutable Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:97:9 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 97 | let mut chip = Chip8::new(game_path); Oct 13 06:08:27.435 INFO kablam! | ----^^^^ Oct 13 06:08:27.435 INFO kablam! | | Oct 13 06:08:27.435 INFO kablam! | help: remove this `mut` Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `stack` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:13:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 13 | stack: [usize; 16], Oct 13 06:08:27.435 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `v` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:14:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 14 | v: [u8; 16], // registers Oct 13 06:08:27.435 INFO kablam! | ^^^^^^^^^^^ Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `i` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:15:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 15 | i: u16, // I register Oct 13 06:08:27.435 INFO kablam! | ^^^^^^ Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `timers` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:16:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 16 | timers: [u16; 2], // Delay and Sound timers Oct 13 06:08:27.435 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `pc` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:17:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 17 | pc: usize, // program counter Oct 13 06:08:27.435 INFO kablam! | ^^^^^^^^^ Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `sp` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:18:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 18 | sp: usize, // stack pointer Oct 13 06:08:27.435 INFO kablam! | ^^^^^^^^^ Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: field is never used: `buf` Oct 13 06:08:27.435 INFO kablam! --> src/main.rs:19:5 Oct 13 06:08:27.435 INFO kablam! | Oct 13 06:08:27.435 INFO kablam! 19 | buf: [bool; ROWS*COLS], // display buffer Oct 13 06:08:27.435 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 13 06:08:27.435 INFO kablam! Oct 13 06:08:27.435 INFO kablam! warning: method is never used: `cpu_step` Oct 13 06:08:27.436 INFO kablam! --> src/main.rs:43:5 Oct 13 06:08:27.436 INFO kablam! | Oct 13 06:08:27.436 INFO kablam! 43 | fn cpu_step(&mut self) { Oct 13 06:08:27.436 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 13 06:08:27.436 INFO kablam! Oct 13 06:08:27.768 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.64s Oct 13 06:08:27.768 INFO kablam! su: No module specific data is present Oct 13 06:08:28.116 INFO running `"docker" "rm" "-f" "f139d45ab554dd85fa0589791475e90bbae22fd887f76cf89340407f0250b4fb"` Oct 13 06:08:28.219 INFO blam! f139d45ab554dd85fa0589791475e90bbae22fd887f76cf89340407f0250b4fb Oct 13 06:08:28.229 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 06:08:28.561 INFO blam! e41895d97bd13eb2b9e8b81ded73cc037505dcc0768ebc64c3b2dc5a75bec347 Oct 13 06:08:28.575 INFO running `"docker" "start" "-a" "e41895d97bd13eb2b9e8b81ded73cc037505dcc0768ebc64c3b2dc5a75bec347"` Oct 13 06:08:29.511 INFO kablam! usermod: no changes Oct 13 06:08:29.553 INFO kablam! Compiling rust-chip-8 v0.1.0 (/source) Oct 13 06:08:29.967 INFO kablam! warning: unused variable: `chip` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:97:13 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 97 | let mut chip = Chip8::new(game_path); Oct 13 06:08:29.967 INFO kablam! | ^^^^ help: consider using `_chip` instead Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! = note: #[warn(unused_variables)] on by default Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: variable does not need to be mutable Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:97:9 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 97 | let mut chip = Chip8::new(game_path); Oct 13 06:08:29.967 INFO kablam! | ----^^^^ Oct 13 06:08:29.967 INFO kablam! | | Oct 13 06:08:29.967 INFO kablam! | help: remove this `mut` Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `stack` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:13:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 13 | stack: [usize; 16], Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! = note: #[warn(dead_code)] on by default Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `v` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:14:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 14 | v: [u8; 16], // registers Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `i` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:15:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 15 | i: u16, // I register Oct 13 06:08:29.967 INFO kablam! | ^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `timers` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:16:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 16 | timers: [u16; 2], // Delay and Sound timers Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `pc` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:17:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 17 | pc: usize, // program counter Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `sp` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:18:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 18 | sp: usize, // stack pointer Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: field is never used: `buf` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:19:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 19 | buf: [bool; ROWS*COLS], // display buffer Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:29.967 INFO kablam! warning: method is never used: `cpu_step` Oct 13 06:08:29.967 INFO kablam! --> src/main.rs:43:5 Oct 13 06:08:29.967 INFO kablam! | Oct 13 06:08:29.967 INFO kablam! 43 | fn cpu_step(&mut self) { Oct 13 06:08:29.967 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 13 06:08:29.967 INFO kablam! Oct 13 06:08:30.395 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.86s Oct 13 06:08:30.403 INFO kablam! su: No module specific data is present Oct 13 06:08:30.875 INFO running `"docker" "rm" "-f" "e41895d97bd13eb2b9e8b81ded73cc037505dcc0768ebc64c3b2dc5a75bec347"` Oct 13 06:08:31.033 INFO blam! e41895d97bd13eb2b9e8b81ded73cc037505dcc0768ebc64c3b2dc5a75bec347 Oct 13 06:08:31.036 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-6/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-6/rustdoc-test-static-cling-1/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/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 +0e07c4281c343e9e15a0a8fca79538ad1a8eb513-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 06:08:31.366 INFO blam! 893d1a88b4be6f337a9fbc3e592940b875fa9c0f64a92a5962c16126362fc806 Oct 13 06:08:31.367 INFO running `"docker" "start" "-a" "893d1a88b4be6f337a9fbc3e592940b875fa9c0f64a92a5962c16126362fc806"` Oct 13 06:08:32.387 INFO kablam! usermod: no changes Oct 13 06:08:32.459 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.03s Oct 13 06:08:32.463 INFO kablam! Running /target/debug/deps/rust_chip_8-00c5711691728f66 Oct 13 06:08:32.471 INFO blam! Oct 13 06:08:32.471 INFO blam! running 0 tests Oct 13 06:08:32.471 INFO blam! Oct 13 06:08:32.471 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 13 06:08:32.471 INFO blam! Oct 13 06:08:32.485 INFO kablam! su: No module specific data is present Oct 13 06:08:33.451 INFO running `"docker" "rm" "-f" "893d1a88b4be6f337a9fbc3e592940b875fa9c0f64a92a5962c16126362fc806"` Oct 13 06:08:33.717 INFO blam! 893d1a88b4be6f337a9fbc3e592940b875fa9c0f64a92a5962c16126362fc806