[INFO] fetching crate emulator_6502 1.1.0... [INFO] testing emulator_6502-1.1.0 against 1.90.0 for beta-1.91-3 [INFO] extracting crate emulator_6502 1.1.0 into /workspace/builds/worker-7-tc1/source [INFO] started tweaking crates.io crate emulator_6502 1.1.0 [INFO] finished tweaking crates.io crate emulator_6502 1.1.0 [INFO] tweaked toml for crates.io crate emulator_6502 1.1.0 written to /workspace/builds/worker-7-tc1/source/Cargo.toml [INFO] validating manifest of crates.io crate emulator_6502 1.1.0 on toolchain 1.90.0 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Updating crates.io index [INFO] [stderr] Locking 64 packages to latest compatible versions [INFO] [stderr] Adding criterion v0.3.6 (available: v0.7.0) [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+1.90.0" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Downloading crates ... [INFO] [stderr] Downloaded criterion-plot v0.4.5 [INFO] [stderr] Downloaded criterion v0.3.6 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] bf019b32dbc25273d5427cc099978958edde978db531a8f2ed9e9c46eb18d647 [INFO] running `Command { std: "docker" "start" "-a" "bf019b32dbc25273d5427cc099978958edde978db531a8f2ed9e9c46eb18d647", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "bf019b32dbc25273d5427cc099978958edde978db531a8f2ed9e9c46eb18d647", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "bf019b32dbc25273d5427cc099978958edde978db531a8f2ed9e9c46eb18d647", kill_on_drop: false }` [INFO] [stdout] bf019b32dbc25273d5427cc099978958edde978db531a8f2ed9e9c46eb18d647 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 151b74ee94097705092c9e35d83efc3030ab53f87e0923f9c1126a624178654e [INFO] running `Command { std: "docker" "start" "-a" "151b74ee94097705092c9e35d83efc3030ab53f87e0923f9c1126a624178654e", kill_on_drop: false }` [INFO] [stderr] Compiling emulator_6502 v1.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:192:47 [INFO] [stdout] | [INFO] [stdout] 192 | pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 192 - pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stdout] 192 + pub fn new_reset_position(interface: &mut dyn Interface6502) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:277:45 [INFO] [stdout] | [INFO] [stdout] 277 | pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 277 - pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] 277 + pub fn cycle(&mut self, interface: &mut dyn Interface6502) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:325:59 [INFO] [stdout] | [INFO] [stdout] 325 | pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 325 - pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] 325 + pub fn execute_instruction(&mut self, interface: &mut dyn Interface6502) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.32s [INFO] running `Command { std: "docker" "inspect" "151b74ee94097705092c9e35d83efc3030ab53f87e0923f9c1126a624178654e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "151b74ee94097705092c9e35d83efc3030ab53f87e0923f9c1126a624178654e", kill_on_drop: false }` [INFO] [stdout] 151b74ee94097705092c9e35d83efc3030ab53f87e0923f9c1126a624178654e [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] a83494f176d83d0393ba5e6294d2c77853fc696a74c8a0c98bdc76227237eceb [INFO] running `Command { std: "docker" "start" "-a" "a83494f176d83d0393ba5e6294d2c77853fc696a74c8a0c98bdc76227237eceb", kill_on_drop: false }` [INFO] [stderr] Compiling serde v1.0.228 [INFO] [stderr] Compiling num-traits v0.2.19 [INFO] [stderr] Compiling plotters-backend v0.3.7 [INFO] [stderr] Compiling itertools v0.10.5 [INFO] [stderr] Compiling csv-core v0.1.12 [INFO] [stderr] Compiling libc v0.2.176 [INFO] [stderr] Compiling textwrap v0.11.0 [INFO] [stderr] Compiling cast v0.3.0 [INFO] [stderr] Compiling half v1.8.3 [INFO] [stderr] Compiling serde_json v1.0.145 [INFO] [stderr] Compiling oorandom v11.1.5 [INFO] [stderr] Compiling syn v2.0.106 [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:192:47 [INFO] [stdout] | [INFO] [stdout] 192 | pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 192 - pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stdout] 192 + pub fn new_reset_position(interface: &mut dyn Interface6502) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:277:45 [INFO] [stdout] | [INFO] [stdout] 277 | pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 277 - pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] 277 + pub fn cycle(&mut self, interface: &mut dyn Interface6502) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:325:59 [INFO] [stdout] | [INFO] [stdout] 325 | pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 325 - pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] 325 + pub fn execute_instruction(&mut self, interface: &mut dyn Interface6502) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Compiling rayon v1.11.0 [INFO] [stderr] Compiling clap v2.34.0 [INFO] [stderr] Compiling plotters-svg v0.3.7 [INFO] [stderr] Compiling csv v1.3.1 [INFO] [stderr] Compiling serde_cbor v0.11.2 [INFO] [stderr] Compiling criterion-plot v0.4.5 [INFO] [stderr] Compiling plotters v0.3.7 [INFO] [stderr] Compiling tinytemplate v1.2.1 [INFO] [stderr] Compiling atty v0.2.14 [INFO] [stderr] Compiling serde_derive v1.0.228 [INFO] [stderr] Compiling criterion v0.3.6 [INFO] [stderr] Compiling emulator_6502 v1.1.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:192:47 [INFO] [stdout] | [INFO] [stdout] 192 | pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 192 - pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stdout] 192 + pub fn new_reset_position(interface: &mut dyn Interface6502) -> Self { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:277:45 [INFO] [stdout] | [INFO] [stdout] 277 | pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 277 - pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] 277 + pub fn cycle(&mut self, interface: &mut dyn Interface6502) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around type [INFO] [stdout] --> src/lib.rs:325:59 [INFO] [stdout] | [INFO] [stdout] 325 | pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 325 - pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stdout] 325 + pub fn execute_instruction(&mut self, interface: &mut dyn Interface6502) { [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 19.29s [INFO] running `Command { std: "docker" "inspect" "a83494f176d83d0393ba5e6294d2c77853fc696a74c8a0c98bdc76227237eceb", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "a83494f176d83d0393ba5e6294d2c77853fc696a74c8a0c98bdc76227237eceb", kill_on_drop: false }` [INFO] [stdout] a83494f176d83d0393ba5e6294d2c77853fc696a74c8a0c98bdc76227237eceb [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "RUSTDOCFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:e90291280db7d1fac5b66fc6dad9f9662629e7365a55743daf9bdf73ebc4ea79" "/opt/rustwide/cargo-home/bin/cargo" "+1.90.0" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] f92d3a0459c3ef553db8b8e76c75c636bc8461f9898801b8bda3f31d900b4069 [INFO] running `Command { std: "docker" "start" "-a" "f92d3a0459c3ef553db8b8e76c75c636bc8461f9898801b8bda3f31d900b4069", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib.rs:192:47 [INFO] [stderr] | [INFO] [stderr] 192 | pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 192 - pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stderr] 192 + pub fn new_reset_position(interface: &mut dyn Interface6502) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib.rs:277:45 [INFO] [stderr] | [INFO] [stderr] 277 | pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 277 - pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] 277 + pub fn cycle(&mut self, interface: &mut dyn Interface6502) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib.rs:325:59 [INFO] [stderr] | [INFO] [stderr] 325 | pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 325 - pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] 325 + pub fn execute_instruction(&mut self, interface: &mut dyn Interface6502) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: `emulator_6502` (lib) generated 3 warnings (run `cargo fix --lib -p emulator_6502` to apply 3 suggestions) [INFO] [stderr] warning: `emulator_6502` (lib test) generated 3 warnings (3 duplicates) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.13s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/emulator_6502-93a14b1fdbd1cc93) [INFO] [stdout] [INFO] [stdout] running 82 tests [INFO] [stdout] test address_modes::test::test_absolute_x ... ok [INFO] [stdout] test address_modes::test::test_absolute_x_extra_cycle ... ok [INFO] [stdout] test address_modes::test::test_absolute ... ok [INFO] [stdout] test address_modes::test::test_absolute_y ... ok [INFO] [stdout] test address_modes::test::test_absolute_y_extra_cycle ... ok [INFO] [stdout] test address_modes::test::test_implied ... ok [INFO] [stdout] test address_modes::test::test_indirect_page_edge ... ok [INFO] [stdout] test address_modes::test::test_indirect_x ... ok [INFO] [stdout] test address_modes::test::test_immediate ... ok [INFO] [stdout] test address_modes::test::test_indirect_y ... ok [INFO] [stdout] test address_modes::test::test_indirect_x_page_edge ... ok [INFO] [stdout] test address_modes::test::test_indirect ... ok [INFO] [stdout] test address_modes::test::test_indirect_y_extra_cycle ... ok [INFO] [stdout] test address_modes::test::test_indirect_y_page_edge ... ok [INFO] [stdout] test address_modes::test::test_zero_page_x ... ok [INFO] [stdout] test address_modes::test::test_zero_page_y ... ok [INFO] [stdout] test opcodes::test::test_adc ... ok [INFO] [stdout] test opcodes::test::test_adc_zero_carry_flags ... ok [INFO] [stdout] test opcodes::test::test_and_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_asl ... ok [INFO] [stdout] test opcodes::test::test_asl_accumulator_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_bit ... ok [INFO] [stdout] test opcodes::test::test_bit_negative_overflow_flags ... ok [INFO] [stdout] test opcodes::test::test_branch_backwards ... ok [INFO] [stdout] test opcodes::test::test_branch ... ok [INFO] [stdout] test opcodes::test::test_branch_fail ... ok [INFO] [stdout] test opcodes::test::test_brk ... ok [INFO] [stdout] test opcodes::test::test_compare ... ok [INFO] [stdout] test opcodes::test::test_compare_less ... ok [INFO] [stdout] test opcodes::test::test_dec ... ok [INFO] [stdout] test opcodes::test::test_dec_negative ... ok [INFO] [stdout] test opcodes::test::test_dex ... ok [INFO] [stdout] test opcodes::test::test_dex_negative ... ok [INFO] [stdout] test opcodes::test::test_dey_negative ... ok [INFO] [stdout] test opcodes::test::test_eor_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_inc ... ok [INFO] [stdout] test opcodes::test::test_inx ... ok [INFO] [stdout] test opcodes::test::test_inx_negative ... ok [INFO] [stdout] test opcodes::test::test_iny ... ok [INFO] [stdout] test opcodes::test::test_iny_negative ... ok [INFO] [stdout] test opcodes::test::test_jmp ... ok [INFO] [stdout] test address_modes::test::test_relative ... ok [INFO] [stdout] test opcodes::test::test_inc_negative ... ok [INFO] [stdout] test opcodes::test::test_dey ... ok [INFO] [stdout] test opcodes::test::test_eor ... ok [INFO] [stdout] test opcodes::test::test_and ... ok [INFO] [stdout] test opcodes::test::test_jsr ... ok [INFO] [stdout] test opcodes::test::test_lda ... ok [INFO] [stdout] test opcodes::test::test_lda_negative ... ok [INFO] [stdout] test opcodes::test::test_ldx ... ok [INFO] [stdout] test opcodes::test::test_ldx_negative ... ok [INFO] [stdout] test opcodes::test::test_lsr ... ok [INFO] [stdout] test opcodes::test::test_ora ... ok [INFO] [stdout] test opcodes::test::test_ora_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_ldy ... ok [INFO] [stdout] test opcodes::test::test_pla ... ok [INFO] [stdout] test opcodes::test::test_lsr_accumulator_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_rol_accumulator ... ok [INFO] [stdout] test opcodes::test::test_ror ... ok [INFO] [stdout] test opcodes::test::test_pha ... ok [INFO] [stdout] test opcodes::test::test_rts ... ok [INFO] [stdout] test opcodes::test::test_ror_accumulator ... ok [INFO] [stdout] test opcodes::test::test_php ... ok [INFO] [stdout] test opcodes::test::test_sbc ... ok [INFO] [stdout] test opcodes::test::test_sbc_carry_negative ... ok [INFO] [stdout] test opcodes::test::test_ldy_negative ... ok [INFO] [stdout] test opcodes::test::test_sbc_zero ... ok [INFO] [stdout] test opcodes::test::test_sbc_overflow ... ok [INFO] [stdout] test opcodes::test::test_sta ... ok [INFO] [stdout] test opcodes::test::test_plp ... ok [INFO] [stdout] test opcodes::test::test_stx ... ok [INFO] [stdout] test opcodes::test::test_tax ... ok [INFO] [stdout] test opcodes::test::test_tay ... ok [INFO] [stdout] test opcodes::test::test_tsx ... ok [INFO] [stdout] test opcodes::test::test_txa ... ok [INFO] [stdout] test opcodes::test::test_txs ... ok [INFO] [stdout] test opcodes::test::test_tya ... ok [INFO] [stdout] test opcodes::test::test_rti ... ok [INFO] [stdout] test opcodes::test::test_rol ... ok [INFO] [stdout] test opcodes::test::test_adc_overflow_negative_flags ... ok [INFO] [stdout] test opcodes::test::test_sty ... ok [INFO] [stdout] test address_modes::test::test_zero_page ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 82 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.24s [INFO] [stdout] [INFO] [stderr] Running tests/tests.rs (/opt/rustwide/target/debug/deps/tests-4821dcc4f44d9c3a) [INFO] [stdout] [INFO] [stdout] running 1 test [INFO] [stdout] test loop_test ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stderr] Doc-tests emulator_6502 [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib.rs:192:47 [INFO] [stderr] | [INFO] [stderr] 192 | pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 192 - pub fn new_reset_position(interface: &mut (dyn Interface6502)) -> Self { [INFO] [stderr] 192 + pub fn new_reset_position(interface: &mut dyn Interface6502) -> Self { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib.rs:277:45 [INFO] [stderr] | [INFO] [stderr] 277 | pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 277 - pub fn cycle(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] 277 + pub fn cycle(&mut self, interface: &mut dyn Interface6502) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around type [INFO] [stderr] --> src/lib.rs:325:59 [INFO] [stderr] | [INFO] [stderr] 325 | pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 325 - pub fn execute_instruction(&mut self, interface: &mut (dyn Interface6502)) { [INFO] [stderr] 325 + pub fn execute_instruction(&mut self, interface: &mut dyn Interface6502) { [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: 3 warnings emitted [INFO] [stderr] [INFO] [stdout] [INFO] [stdout] running 4 tests [INFO] [stdout] test src/lib.rs - (line 16) ... ignored [INFO] [stdout] test src/lib.rs - (line 51) ... ignored [INFO] [stdout] test src/lib.rs - Interface6502 (line 406) ... ignored [INFO] [stdout] test src/lib.rs - MOS6502 (line 117) ... ignored [INFO] [stdout] [INFO] [stdout] test result: ok. 0 passed; 0 failed; 4 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "f92d3a0459c3ef553db8b8e76c75c636bc8461f9898801b8bda3f31d900b4069", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f92d3a0459c3ef553db8b8e76c75c636bc8461f9898801b8bda3f31d900b4069", kill_on_drop: false }` [INFO] [stdout] f92d3a0459c3ef553db8b8e76c75c636bc8461f9898801b8bda3f31d900b4069