Oct 14 22:51:06.536 INFO testing dgibb/moes-chip8 against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 14 22:51:06.538 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 14 22:51:06.788 INFO blam! dc81d027b74080da04d3072aaf73672fa81c02ace784fa245cf597f1b9ae05b2 Oct 14 22:51:06.790 INFO running `"docker" "start" "-a" "dc81d027b74080da04d3072aaf73672fa81c02ace784fa245cf597f1b9ae05b2"` Oct 14 22:51:07.503 INFO kablam! usermod: no changes Oct 14 22:51:07.679 INFO kablam! Compiling iovec v0.1.2 Oct 14 22:51:07.679 INFO kablam! Compiling rand v0.4.2 Oct 14 22:51:07.679 INFO kablam! Compiling mustache v0.8.1 Oct 14 22:51:07.703 INFO kablam! Compiling serde_json v1.0.16 Oct 14 22:51:07.703 INFO kablam! Compiling hyper v0.10.12 Oct 14 22:51:08.828 INFO kablam! Compiling bytes v0.4.6 Oct 14 22:51:08.828 INFO kablam! Compiling mio v0.6.14 Oct 14 22:51:15.237 INFO kablam! Compiling rand v0.3.22 Oct 14 22:51:17.663 INFO kablam! Compiling ws v0.7.3 Oct 14 22:51:23.696 INFO kablam! Compiling nickel v0.10.0 Oct 14 22:51:27.041 INFO kablam! Compiling MOES-Chip8 v0.1.0 (/source) Oct 14 22:51:28.451 INFO kablam! warning: variable does not need to be mutable Oct 14 22:51:28.451 INFO kablam! --> src/Emulator.rs:116:13 Oct 14 22:51:28.451 INFO kablam! | Oct 14 22:51:28.451 INFO kablam! 116 | let mut state: emulator_state = emulator_state::new(&self); Oct 14 22:51:28.451 INFO kablam! | ----^^^^^ Oct 14 22:51:28.451 INFO kablam! | | Oct 14 22:51:28.451 INFO kablam! | help: remove this `mut` Oct 14 22:51:28.451 INFO kablam! | Oct 14 22:51:28.451 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 14 22:51:28.451 INFO kablam! Oct 14 22:51:28.487 INFO kablam! warning: method is never used: `run` Oct 14 22:51:28.487 INFO kablam! --> src/Emulator.rs:75:5 Oct 14 22:51:28.487 INFO kablam! | Oct 14 22:51:28.487 INFO kablam! 75 | pub fn run(&mut self){ Oct 14 22:51:28.487 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:51:28.487 INFO kablam! | Oct 14 22:51:28.487 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 22:51:28.487 INFO kablam! Oct 14 22:51:28.487 INFO kablam! warning: crate `MOES_Chip8` should have a snake case name such as `moes_chip8` Oct 14 22:51:28.487 INFO kablam! | Oct 14 22:51:28.487 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 14 22:51:28.487 INFO kablam! Oct 14 22:51:28.487 INFO kablam! warning: module `Emulator` should have a snake case name such as `emulator` Oct 14 22:51:28.487 INFO kablam! --> src/main.rs:16:1 Oct 14 22:51:28.487 INFO kablam! | Oct 14 22:51:28.487 INFO kablam! 16 | mod Emulator; Oct 14 22:51:28.487 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 22:51:28.487 INFO kablam! Oct 14 22:51:28.487 INFO kablam! warning: type `emulator_state` should have a camel case name such as `EmulatorState` Oct 14 22:51:28.487 INFO kablam! --> src/Emulator.rs:22:1 Oct 14 22:51:28.487 INFO kablam! | Oct 14 22:51:28.487 INFO kablam! 22 | / pub struct emulator_state{ Oct 14 22:51:28.487 INFO kablam! 23 | | pub pc: u16, Oct 14 22:51:28.487 INFO kablam! 24 | | pub index: u16, Oct 14 22:51:28.487 INFO kablam! 25 | | pub gpr: [u8;16], Oct 14 22:51:28.487 INFO kablam! 26 | | pub stack: [u16;16], Oct 14 22:51:28.487 INFO kablam! 27 | | pub blocks: Vec, Oct 14 22:51:28.487 INFO kablam! 28 | | } Oct 14 22:51:28.487 INFO kablam! | |_^ Oct 14 22:51:28.487 INFO kablam! | Oct 14 22:51:28.487 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 14 22:51:28.487 INFO kablam! Oct 14 22:51:28.491 INFO kablam! warning: module `TranslationCache` should have a snake case name such as `translation_cache` Oct 14 22:51:28.491 INFO kablam! --> src/main.rs:17:1 Oct 14 22:51:28.491 INFO kablam! | Oct 14 22:51:28.491 INFO kablam! 17 | mod TranslationCache; Oct 14 22:51:28.491 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:51:28.491 INFO kablam! Oct 14 22:51:28.491 INFO kablam! warning: module `Emitter` should have a snake case name such as `emitter` Oct 14 22:51:28.491 INFO kablam! --> src/main.rs:18:1 Oct 14 22:51:28.491 INFO kablam! | Oct 14 22:51:28.491 INFO kablam! 18 | mod Emitter; Oct 14 22:51:28.491 INFO kablam! | ^^^^^^^^^^^^ Oct 14 22:51:28.491 INFO kablam! Oct 14 22:51:28.491 INFO kablam! warning: module `Interpreter` should have a snake case name such as `interpreter` Oct 14 22:51:28.491 INFO kablam! --> src/main.rs:19:1 Oct 14 22:51:28.491 INFO kablam! | Oct 14 22:51:28.491 INFO kablam! 19 | mod Interpreter; Oct 14 22:51:28.491 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 14 22:51:28.491 INFO kablam! Oct 14 22:51:28.491 INFO kablam! warning: type `register_map` should have a camel case name such as `RegisterMap` Oct 14 22:51:28.491 INFO kablam! --> src/register_map.rs:1:1 Oct 14 22:51:28.491 INFO kablam! | Oct 14 22:51:28.491 INFO kablam! 1 | / pub struct register_map { Oct 14 22:51:28.491 INFO kablam! 2 | | //[chip8 reg, x86 reg, second chance bit] Oct 14 22:51:28.491 INFO kablam! 3 | | pub map: Vec<[u8;3]>, Oct 14 22:51:28.491 INFO kablam! 4 | | pub valid_regs:[u8;8], Oct 14 22:51:28.491 INFO kablam! 5 | | } Oct 14 22:51:28.491 INFO kablam! | |_^ Oct 14 22:51:28.491 INFO kablam! Oct 14 22:51:28.491 INFO kablam! warning: type `executable_block` should have a camel case name such as `ExecutableBlock` Oct 14 22:51:28.491 INFO kablam! --> src/executable_block.rs:11:1 Oct 14 22:51:28.491 INFO kablam! | Oct 14 22:51:28.491 INFO kablam! 11 | / pub struct executable_block { Oct 14 22:51:28.491 INFO kablam! 12 | | pub block: *mut u8, Oct 14 22:51:28.491 INFO kablam! 13 | | pub map: register_map, Oct 14 22:51:28.491 INFO kablam! 14 | | pub fn_ptr: Option< fn(&mut [u8;16]) -> u64 >, Oct 14 22:51:28.491 INFO kablam! 15 | | pub chip8_entry: u16, Oct 14 22:51:28.491 INFO kablam! 16 | | pub chip8_exit: u16, Oct 14 22:51:28.491 INFO kablam! 17 | | } Oct 14 22:51:28.491 INFO kablam! | |_^ Oct 14 22:51:28.491 INFO kablam! Oct 14 22:51:33.606 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 26.07s Oct 14 22:51:33.614 INFO kablam! su: No module specific data is present Oct 14 22:51:34.018 INFO running `"docker" "rm" "-f" "dc81d027b74080da04d3072aaf73672fa81c02ace784fa245cf597f1b9ae05b2"` Oct 14 22:51:34.090 INFO blam! dc81d027b74080da04d3072aaf73672fa81c02ace784fa245cf597f1b9ae05b2 Oct 14 22:51:34.096 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 14 22:51:34.272 INFO blam! 0883f0e75c13c445b33f1d87ba94afd5a3315563ed11a50f30dd3cdfe9a551ad Oct 14 22:51:34.273 INFO running `"docker" "start" "-a" "0883f0e75c13c445b33f1d87ba94afd5a3315563ed11a50f30dd3cdfe9a551ad"` Oct 14 22:51:34.605 INFO kablam! usermod: no changes Oct 14 22:51:34.691 INFO kablam! Compiling MOES-Chip8 v0.1.0 (/source) Oct 14 22:51:36.083 INFO kablam! warning: variable does not need to be mutable Oct 14 22:51:36.084 INFO kablam! --> src/Emulator.rs:116:13 Oct 14 22:51:36.084 INFO kablam! | Oct 14 22:51:36.084 INFO kablam! 116 | let mut state: emulator_state = emulator_state::new(&self); Oct 14 22:51:36.084 INFO kablam! | ----^^^^^ Oct 14 22:51:36.085 INFO kablam! | | Oct 14 22:51:36.085 INFO kablam! | help: remove this `mut` Oct 14 22:51:36.085 INFO kablam! | Oct 14 22:51:36.085 INFO kablam! = note: #[warn(unused_mut)] on by default Oct 14 22:51:36.085 INFO kablam! Oct 14 22:51:36.107 INFO kablam! warning: method is never used: `run` Oct 14 22:51:36.107 INFO kablam! --> src/Emulator.rs:75:5 Oct 14 22:51:36.108 INFO kablam! | Oct 14 22:51:36.108 INFO kablam! 75 | pub fn run(&mut self){ Oct 14 22:51:36.108 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:51:36.108 INFO kablam! | Oct 14 22:51:36.109 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 22:51:36.109 INFO kablam! Oct 14 22:51:36.115 INFO kablam! warning: crate `MOES_Chip8` should have a snake case name such as `moes_chip8` Oct 14 22:51:36.116 INFO kablam! | Oct 14 22:51:36.116 INFO kablam! = note: #[warn(non_snake_case)] on by default Oct 14 22:51:36.116 INFO kablam! Oct 14 22:51:36.116 INFO kablam! warning: module `Emulator` should have a snake case name such as `emulator` Oct 14 22:51:36.117 INFO kablam! --> src/main.rs:16:1 Oct 14 22:51:36.117 INFO kablam! | Oct 14 22:51:36.117 INFO kablam! 16 | mod Emulator; Oct 14 22:51:36.117 INFO kablam! | ^^^^^^^^^^^^^ Oct 14 22:51:36.118 INFO kablam! Oct 14 22:51:36.118 INFO kablam! warning: type `emulator_state` should have a camel case name such as `EmulatorState` Oct 14 22:51:36.118 INFO kablam! --> src/Emulator.rs:22:1 Oct 14 22:51:36.118 INFO kablam! | Oct 14 22:51:36.119 INFO kablam! 22 | / pub struct emulator_state{ Oct 14 22:51:36.119 INFO kablam! 23 | | pub pc: u16, Oct 14 22:51:36.119 INFO kablam! 24 | | pub index: u16, Oct 14 22:51:36.119 INFO kablam! 25 | | pub gpr: [u8;16], Oct 14 22:51:36.120 INFO kablam! 26 | | pub stack: [u16;16], Oct 14 22:51:36.120 INFO kablam! 27 | | pub blocks: Vec, Oct 14 22:51:36.120 INFO kablam! 28 | | } Oct 14 22:51:36.120 INFO kablam! | |_^ Oct 14 22:51:36.121 INFO kablam! | Oct 14 22:51:36.121 INFO kablam! = note: #[warn(non_camel_case_types)] on by default Oct 14 22:51:36.121 INFO kablam! Oct 14 22:51:36.122 INFO kablam! warning: module `TranslationCache` should have a snake case name such as `translation_cache` Oct 14 22:51:36.122 INFO kablam! --> src/main.rs:17:1 Oct 14 22:51:36.122 INFO kablam! | Oct 14 22:51:36.122 INFO kablam! 17 | mod TranslationCache; Oct 14 22:51:36.122 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 14 22:51:36.123 INFO kablam! Oct 14 22:51:36.123 INFO kablam! warning: module `Emitter` should have a snake case name such as `emitter` Oct 14 22:51:36.123 INFO kablam! --> src/main.rs:18:1 Oct 14 22:51:36.124 INFO kablam! | Oct 14 22:51:36.124 INFO kablam! 18 | mod Emitter; Oct 14 22:51:36.124 INFO kablam! | ^^^^^^^^^^^^ Oct 14 22:51:36.124 INFO kablam! Oct 14 22:51:36.124 INFO kablam! warning: module `Interpreter` should have a snake case name such as `interpreter` Oct 14 22:51:36.125 INFO kablam! --> src/main.rs:19:1 Oct 14 22:51:36.125 INFO kablam! | Oct 14 22:51:36.125 INFO kablam! 19 | mod Interpreter; Oct 14 22:51:36.125 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 14 22:51:36.126 INFO kablam! Oct 14 22:51:36.126 INFO kablam! warning: type `register_map` should have a camel case name such as `RegisterMap` Oct 14 22:51:36.126 INFO kablam! --> src/register_map.rs:1:1 Oct 14 22:51:36.127 INFO kablam! | Oct 14 22:51:36.127 INFO kablam! 1 | / pub struct register_map { Oct 14 22:51:36.127 INFO kablam! 2 | | //[chip8 reg, x86 reg, second chance bit] Oct 14 22:51:36.127 INFO kablam! 3 | | pub map: Vec<[u8;3]>, Oct 14 22:51:36.128 INFO kablam! 4 | | pub valid_regs:[u8;8], Oct 14 22:51:36.128 INFO kablam! 5 | | } Oct 14 22:51:36.128 INFO kablam! | |_^ Oct 14 22:51:36.128 INFO kablam! Oct 14 22:51:36.129 INFO kablam! warning: type `executable_block` should have a camel case name such as `ExecutableBlock` Oct 14 22:51:36.129 INFO kablam! --> src/executable_block.rs:11:1 Oct 14 22:51:36.129 INFO kablam! | Oct 14 22:51:36.130 INFO kablam! 11 | / pub struct executable_block { Oct 14 22:51:36.130 INFO kablam! 12 | | pub block: *mut u8, Oct 14 22:51:36.130 INFO kablam! 13 | | pub map: register_map, Oct 14 22:51:36.130 INFO kablam! 14 | | pub fn_ptr: Option< fn(&mut [u8;16]) -> u64 >, Oct 14 22:51:36.131 INFO kablam! 15 | | pub chip8_entry: u16, Oct 14 22:51:36.131 INFO kablam! 16 | | pub chip8_exit: u16, Oct 14 22:51:36.131 INFO kablam! 17 | | } Oct 14 22:51:36.132 INFO kablam! | |_^ Oct 14 22:51:36.132 INFO kablam! Oct 14 22:51:36.629 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 2.01s Oct 14 22:51:36.639 INFO kablam! su: No module specific data is present Oct 14 22:51:37.391 INFO running `"docker" "rm" "-f" "0883f0e75c13c445b33f1d87ba94afd5a3315563ed11a50f30dd3cdfe9a551ad"` Oct 14 22:51:37.643 INFO blam! 0883f0e75c13c445b33f1d87ba94afd5a3315563ed11a50f30dd3cdfe9a551ad Oct 14 22:51:37.647 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/rustdoc-test-static-cling-1/worker-2/master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-2/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 14 22:51:37.995 INFO blam! fa6f6fa63368dfc804f147eb939d1f8383c1b8975b7a417fc5325358cf60ce37 Oct 14 22:51:38.003 INFO running `"docker" "start" "-a" "fa6f6fa63368dfc804f147eb939d1f8383c1b8975b7a417fc5325358cf60ce37"` Oct 14 22:51:38.861 INFO kablam! usermod: no changes Oct 14 22:51:38.979 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.08s Oct 14 22:51:38.996 INFO kablam! Running /target/debug/deps/MOES_Chip8-5fea384677df11a4 Oct 14 22:51:39.000 INFO blam! Oct 14 22:51:39.000 INFO blam! running 0 tests Oct 14 22:51:39.001 INFO blam! Oct 14 22:51:39.001 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 22:51:39.001 INFO blam! Oct 14 22:51:39.015 INFO kablam! su: No module specific data is present Oct 14 22:51:39.517 INFO running `"docker" "rm" "-f" "fa6f6fa63368dfc804f147eb939d1f8383c1b8975b7a417fc5325358cf60ce37"` Oct 14 22:51:39.716 INFO blam! fa6f6fa63368dfc804f147eb939d1f8383c1b8975b7a417fc5325358cf60ce37