Oct 14 21:02:24.174 INFO testing fChristenson/nes-emulator against master#0e07c4281c343e9e15a0a8fca79538ad1a8eb513 for rustdoc-test-static-cling-1 Oct 14 21:02:24.175 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 14 21:02:24.622 INFO blam! 9832e316b3b821a6c3d10785f28e042f2aa4c94f6ae5680df34dfc3b41353905 Oct 14 21:02:24.625 INFO running `"docker" "start" "-a" "9832e316b3b821a6c3d10785f28e042f2aa4c94f6ae5680df34dfc3b41353905"` Oct 14 21:02:26.638 INFO kablam! usermod: no changes Oct 14 21:02:26.679 INFO kablam! Compiling nes-emulator v0.1.0 (/source) Oct 14 21:02:27.067 INFO kablam! warning: enum is never used: `InstructionType` Oct 14 21:02:27.067 INFO kablam! --> src/lib/instructions.rs:4:1 Oct 14 21:02:27.067 INFO kablam! | Oct 14 21:02:27.067 INFO kablam! 4 | pub enum InstructionType { Oct 14 21:02:27.067 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.067 INFO kablam! | Oct 14 21:02:27.067 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 21:02:27.067 INFO kablam! Oct 14 21:02:27.067 INFO kablam! warning: enum is never used: `AddressingMode` Oct 14 21:02:27.067 INFO kablam! --> src/lib/instructions.rs:8:1 Oct 14 21:02:27.067 INFO kablam! | Oct 14 21:02:27.067 INFO kablam! 8 | pub enum AddressingMode { Oct 14 21:02:27.067 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.067 INFO kablam! Oct 14 21:02:27.067 INFO kablam! warning: struct is never constructed: `Instruction` Oct 14 21:02:27.067 INFO kablam! --> src/lib/instructions.rs:24:1 Oct 14 21:02:27.067 INFO kablam! | Oct 14 21:02:27.067 INFO kablam! 24 | pub struct Instruction { Oct 14 21:02:27.067 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.067 INFO kablam! Oct 14 21:02:27.067 INFO kablam! warning: struct is never constructed: `Parameter` Oct 14 21:02:27.067 INFO kablam! --> src/lib/instructions.rs:33:1 Oct 14 21:02:27.067 INFO kablam! | Oct 14 21:02:27.067 INFO kablam! 33 | pub struct Parameter { Oct 14 21:02:27.067 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.067 INFO kablam! Oct 14 21:02:27.067 INFO kablam! warning: method is never used: `new` Oct 14 21:02:27.067 INFO kablam! --> src/lib/instructions.rs:40:3 Oct 14 21:02:27.067 INFO kablam! | Oct 14 21:02:27.067 INFO kablam! 40 | / pub fn new( Oct 14 21:02:27.067 INFO kablam! 41 | | instruction_type: InstructionType, Oct 14 21:02:27.067 INFO kablam! 42 | | addressing_mode: AddressingMode, Oct 14 21:02:27.067 INFO kablam! 43 | | operation: Box u8>, Oct 14 21:02:27.068 INFO kablam! ... | Oct 14 21:02:27.068 INFO kablam! 67 | | } Oct 14 21:02:27.068 INFO kablam! 68 | | } Oct 14 21:02:27.068 INFO kablam! | |___^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: method is never used: `high_param` Oct 14 21:02:27.068 INFO kablam! --> src/lib/instructions.rs:70:3 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 70 | fn high_param(memory: &mut Memory, low_address: u8) -> u8 { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: method is never used: `calculate_page_crossed_penalty` Oct 14 21:02:27.068 INFO kablam! --> src/lib/instructions.rs:75:3 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 75 | fn calculate_page_crossed_penalty(address_before: u8, address_after: u8) -> u8 { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: method is never used: `execute` Oct 14 21:02:27.068 INFO kablam! --> src/lib/instructions.rs:83:3 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 83 | fn execute(&self, cpu: &Cpu, memory: &mut Memory, starting_address: u8) -> u8 { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: struct is never constructed: `Cpu` Oct 14 21:02:27.068 INFO kablam! --> src/lib/cpu.rs:1:1 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 1 | pub struct Cpu { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: struct is never constructed: `Stack` Oct 14 21:02:27.068 INFO kablam! --> src/lib/stack.rs:3:1 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 3 | pub struct Stack { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: method is never used: `new` Oct 14 21:02:27.068 INFO kablam! --> src/lib/stack.rs:8:5 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 8 | pub fn new() -> Stack { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: method is never used: `push` Oct 14 21:02:27.068 INFO kablam! --> src/lib/stack.rs:12:5 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 12 | pub fn push(&mut self, memory: &mut Memory, value: u8) { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: method is never used: `pop` Oct 14 21:02:27.068 INFO kablam! --> src/lib/stack.rs:17:3 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 17 | pub fn pop(&mut self, memory: &mut Memory) -> u8 { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:27.068 INFO kablam! --> src/lib/instructions.rs:76:25 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 76 | if (address_after & 0xFF00) != (address_before & 0xFF00) { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^ Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! = note: #[warn(overflowing_literals)] on by default Oct 14 21:02:27.068 INFO kablam! = note: the literal `0xFF00` (decimal `65280`) does not fit into an `u8` and will become `0u8` Oct 14 21:02:27.068 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:27.068 INFO kablam! --> src/lib/instructions.rs:76:54 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 76 | if (address_after & 0xFF00) != (address_before & 0xFF00) { Oct 14 21:02:27.068 INFO kablam! | ^^^^^^ Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! = note: the literal `0xFF00` (decimal `65280`) does not fit into an `u8` and will become `0u8` Oct 14 21:02:27.068 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:27.068 INFO kablam! --> src/lib/instructions.rs:166:40 Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! 166 | address_high = address_low & 0xFF00; Oct 14 21:02:27.068 INFO kablam! | ^^^^^^ Oct 14 21:02:27.068 INFO kablam! | Oct 14 21:02:27.068 INFO kablam! = note: the literal `0xFF00` (decimal `65280`) does not fit into an `u8` and will become `0u8` Oct 14 21:02:27.068 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:27.068 INFO kablam! Oct 14 21:02:27.068 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:27.068 INFO kablam! --> src/lib/stack.rs:9:28 Oct 14 21:02:27.069 INFO kablam! | Oct 14 21:02:27.069 INFO kablam! 9 | Stack{stack_pointer: 0x01FF} Oct 14 21:02:27.069 INFO kablam! | ^^^^^^ Oct 14 21:02:27.069 INFO kablam! | Oct 14 21:02:27.069 INFO kablam! = note: the literal `0x01FF` (decimal `511`) does not fit into an `u8` and will become `255u8` Oct 14 21:02:27.069 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:27.069 INFO kablam! Oct 14 21:02:27.447 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.78s Oct 14 21:02:27.451 INFO kablam! su: No module specific data is present Oct 14 21:02:28.823 INFO running `"docker" "rm" "-f" "9832e316b3b821a6c3d10785f28e042f2aa4c94f6ae5680df34dfc3b41353905"` Oct 14 21:02:29.148 INFO blam! 9832e316b3b821a6c3d10785f28e042f2aa4c94f6ae5680df34dfc3b41353905 Oct 14 21:02:29.161 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 14 21:02:29.720 INFO blam! 442aefc8697221b35b165ac0edc2d300ff9a7fc2826b939da28c405797be02b9 Oct 14 21:02:29.722 INFO running `"docker" "start" "-a" "442aefc8697221b35b165ac0edc2d300ff9a7fc2826b939da28c405797be02b9"` Oct 14 21:02:31.495 INFO kablam! usermod: no changes Oct 14 21:02:31.531 INFO kablam! Compiling nes-emulator v0.1.0 (/source) Oct 14 21:02:31.992 INFO kablam! warning: enum is never used: `InstructionType` Oct 14 21:02:31.992 INFO kablam! --> src/lib/instructions.rs:4:1 Oct 14 21:02:31.992 INFO kablam! | Oct 14 21:02:31.992 INFO kablam! 4 | pub enum InstructionType { Oct 14 21:02:31.992 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.992 INFO kablam! | Oct 14 21:02:31.992 INFO kablam! = note: #[warn(dead_code)] on by default Oct 14 21:02:31.992 INFO kablam! Oct 14 21:02:31.992 INFO kablam! warning: enum is never used: `AddressingMode` Oct 14 21:02:31.992 INFO kablam! --> src/lib/instructions.rs:8:1 Oct 14 21:02:31.992 INFO kablam! | Oct 14 21:02:31.992 INFO kablam! 8 | pub enum AddressingMode { Oct 14 21:02:31.992 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.992 INFO kablam! Oct 14 21:02:31.993 INFO kablam! warning: struct is never constructed: `Instruction` Oct 14 21:02:31.993 INFO kablam! --> src/lib/instructions.rs:24:1 Oct 14 21:02:31.993 INFO kablam! | Oct 14 21:02:31.993 INFO kablam! 24 | pub struct Instruction { Oct 14 21:02:31.993 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.993 INFO kablam! Oct 14 21:02:31.993 INFO kablam! warning: struct is never constructed: `Parameter` Oct 14 21:02:31.993 INFO kablam! --> src/lib/instructions.rs:33:1 Oct 14 21:02:31.993 INFO kablam! | Oct 14 21:02:31.993 INFO kablam! 33 | pub struct Parameter { Oct 14 21:02:31.993 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.993 INFO kablam! Oct 14 21:02:31.993 INFO kablam! warning: method is never used: `new` Oct 14 21:02:31.993 INFO kablam! --> src/lib/instructions.rs:40:3 Oct 14 21:02:31.993 INFO kablam! | Oct 14 21:02:31.993 INFO kablam! 40 | / pub fn new( Oct 14 21:02:31.993 INFO kablam! 41 | | instruction_type: InstructionType, Oct 14 21:02:31.993 INFO kablam! 42 | | addressing_mode: AddressingMode, Oct 14 21:02:31.993 INFO kablam! 43 | | operation: Box u8>, Oct 14 21:02:31.993 INFO kablam! ... | Oct 14 21:02:31.993 INFO kablam! 67 | | } Oct 14 21:02:31.993 INFO kablam! 68 | | } Oct 14 21:02:31.993 INFO kablam! | |___^ Oct 14 21:02:31.993 INFO kablam! Oct 14 21:02:31.993 INFO kablam! warning: method is never used: `high_param` Oct 14 21:02:31.993 INFO kablam! --> src/lib/instructions.rs:70:3 Oct 14 21:02:31.993 INFO kablam! | Oct 14 21:02:31.993 INFO kablam! 70 | fn high_param(memory: &mut Memory, low_address: u8) -> u8 { Oct 14 21:02:31.993 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.993 INFO kablam! Oct 14 21:02:31.993 INFO kablam! warning: method is never used: `calculate_page_crossed_penalty` Oct 14 21:02:31.993 INFO kablam! --> src/lib/instructions.rs:75:3 Oct 14 21:02:31.993 INFO kablam! | Oct 14 21:02:31.993 INFO kablam! 75 | fn calculate_page_crossed_penalty(address_before: u8, address_after: u8) -> u8 { Oct 14 21:02:31.993 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.993 INFO kablam! Oct 14 21:02:31.993 INFO kablam! warning: method is never used: `execute` Oct 14 21:02:31.993 INFO kablam! --> src/lib/instructions.rs:83:3 Oct 14 21:02:31.993 INFO kablam! | Oct 14 21:02:31.993 INFO kablam! 83 | fn execute(&self, cpu: &Cpu, memory: &mut Memory, starting_address: u8) -> u8 { Oct 14 21:02:31.993 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.994 INFO kablam! Oct 14 21:02:31.994 INFO kablam! warning: struct is never constructed: `Cpu` Oct 14 21:02:31.994 INFO kablam! --> src/lib/cpu.rs:1:1 Oct 14 21:02:31.994 INFO kablam! | Oct 14 21:02:31.994 INFO kablam! 1 | pub struct Cpu { Oct 14 21:02:31.994 INFO kablam! | ^^^^^^^^^^^^^^ Oct 14 21:02:31.994 INFO kablam! Oct 14 21:02:31.994 INFO kablam! warning: struct is never constructed: `Stack` Oct 14 21:02:31.994 INFO kablam! --> src/lib/stack.rs:3:1 Oct 14 21:02:31.994 INFO kablam! | Oct 14 21:02:31.994 INFO kablam! 3 | pub struct Stack { Oct 14 21:02:31.994 INFO kablam! | ^^^^^^^^^^^^^^^^ Oct 14 21:02:31.994 INFO kablam! Oct 14 21:02:31.994 INFO kablam! warning: method is never used: `new` Oct 14 21:02:31.994 INFO kablam! --> src/lib/stack.rs:8:5 Oct 14 21:02:31.994 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 8 | pub fn new() -> Stack { Oct 14 21:02:31.995 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:31.995 INFO kablam! warning: method is never used: `push` Oct 14 21:02:31.995 INFO kablam! --> src/lib/stack.rs:12:5 Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 12 | pub fn push(&mut self, memory: &mut Memory, value: u8) { Oct 14 21:02:31.995 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:31.995 INFO kablam! warning: method is never used: `pop` Oct 14 21:02:31.995 INFO kablam! --> src/lib/stack.rs:17:3 Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 17 | pub fn pop(&mut self, memory: &mut Memory) -> u8 { Oct 14 21:02:31.995 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:31.995 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:31.995 INFO kablam! --> src/lib/instructions.rs:76:25 Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 76 | if (address_after & 0xFF00) != (address_before & 0xFF00) { Oct 14 21:02:31.995 INFO kablam! | ^^^^^^ Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! = note: #[warn(overflowing_literals)] on by default Oct 14 21:02:31.995 INFO kablam! = note: the literal `0xFF00` (decimal `65280`) does not fit into an `u8` and will become `0u8` Oct 14 21:02:31.995 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:31.995 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:31.995 INFO kablam! --> src/lib/instructions.rs:76:54 Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 76 | if (address_after & 0xFF00) != (address_before & 0xFF00) { Oct 14 21:02:31.995 INFO kablam! | ^^^^^^ Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! = note: the literal `0xFF00` (decimal `65280`) does not fit into an `u8` and will become `0u8` Oct 14 21:02:31.995 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:31.995 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:31.995 INFO kablam! --> src/lib/instructions.rs:166:40 Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 166 | address_high = address_low & 0xFF00; Oct 14 21:02:31.995 INFO kablam! | ^^^^^^ Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! = note: the literal `0xFF00` (decimal `65280`) does not fit into an `u8` and will become `0u8` Oct 14 21:02:31.995 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:31.995 INFO kablam! warning: literal out of range for u8 Oct 14 21:02:31.995 INFO kablam! --> src/lib/stack.rs:9:28 Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! 9 | Stack{stack_pointer: 0x01FF} Oct 14 21:02:31.995 INFO kablam! | ^^^^^^ Oct 14 21:02:31.995 INFO kablam! | Oct 14 21:02:31.995 INFO kablam! = note: the literal `0x01FF` (decimal `511`) does not fit into an `u8` and will become `255u8` Oct 14 21:02:31.995 INFO kablam! = help: consider using `u16` instead Oct 14 21:02:31.995 INFO kablam! Oct 14 21:02:32.550 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 1.03s Oct 14 21:02:32.553 INFO kablam! su: No module specific data is present Oct 14 21:02:33.691 INFO running `"docker" "rm" "-f" "442aefc8697221b35b165ac0edc2d300ff9a7fc2826b939da28c405797be02b9"` Oct 14 21:02:33.999 INFO blam! 442aefc8697221b35b165ac0edc2d300ff9a7fc2826b939da28c405797be02b9 Oct 14 21:02:34.002 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 14 21:02:34.403 INFO blam! 72d61cf15f753aa10b62caa42265dc55e812b684cfce799f59291a2a7f4ff396 Oct 14 21:02:34.405 INFO running `"docker" "start" "-a" "72d61cf15f753aa10b62caa42265dc55e812b684cfce799f59291a2a7f4ff396"` Oct 14 21:02:36.343 INFO kablam! usermod: no changes Oct 14 21:02:36.404 INFO kablam! Finished dev [unoptimized + debuginfo] target(s) in 0.03s Oct 14 21:02:36.405 INFO kablam! Running /target/debug/deps/nes_emulator-102507e3d1f3640e Oct 14 21:02:36.423 INFO blam! Oct 14 21:02:36.423 INFO blam! running 0 tests Oct 14 21:02:36.423 INFO blam! Oct 14 21:02:36.423 INFO blam! test result: ok. 0 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out Oct 14 21:02:36.423 INFO blam! Oct 14 21:02:36.424 INFO kablam! su: No module specific data is present Oct 14 21:02:37.271 INFO running `"docker" "rm" "-f" "72d61cf15f753aa10b62caa42265dc55e812b684cfce799f59291a2a7f4ff396"` Oct 14 21:02:37.475 INFO blam! 72d61cf15f753aa10b62caa42265dc55e812b684cfce799f59291a2a7f4ff396