[INFO] fetching crate emulator_6502 1.1.0... [INFO] testing emulator_6502-1.1.0 against beta-2025-09-21 for beta-1.91-3 [INFO] extracting crate emulator_6502 1.1.0 into /workspace/builds/worker-7-tc2/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-tc2/source/Cargo.toml [INFO] validating manifest of crates.io crate emulator_6502 1.1.0 on toolchain beta-2025-09-21 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+beta-2025-09-21" "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" "+beta-2025-09-21" "generate-lockfile" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [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" "+beta-2025-09-21" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/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" "+beta-2025-09-21" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] cb5f78ad580167e52514f37392fbeed90280419ce96d63f4b2806d00ccfddfc3 [INFO] running `Command { std: "docker" "start" "-a" "cb5f78ad580167e52514f37392fbeed90280419ce96d63f4b2806d00ccfddfc3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "cb5f78ad580167e52514f37392fbeed90280419ce96d63f4b2806d00ccfddfc3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "cb5f78ad580167e52514f37392fbeed90280419ce96d63f4b2806d00ccfddfc3", kill_on_drop: false }` [INFO] [stdout] cb5f78ad580167e52514f37392fbeed90280419ce96d63f4b2806d00ccfddfc3 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/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" "+beta-2025-09-21" "build" "--frozen" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] ad7e0c15f1cd007057c9306f3cc522278597647a45963ec7ad0f8bf8585b3db5 [INFO] running `Command { std: "docker" "start" "-a" "ad7e0c15f1cd007057c9306f3cc522278597647a45963ec7ad0f8bf8585b3db5", 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)]` (part of `#[warn(unused)]`) 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.38s [INFO] running `Command { std: "docker" "inspect" "ad7e0c15f1cd007057c9306f3cc522278597647a45963ec7ad0f8bf8585b3db5", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ad7e0c15f1cd007057c9306f3cc522278597647a45963ec7ad0f8bf8585b3db5", kill_on_drop: false }` [INFO] [stdout] ad7e0c15f1cd007057c9306f3cc522278597647a45963ec7ad0f8bf8585b3db5 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/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" "+beta-2025-09-21" "test" "--frozen" "--no-run" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 73b6c12b5ce5b95686203260d969c3388b1c3e34dd65cad3771dcfdf958153c1 [INFO] running `Command { std: "docker" "start" "-a" "73b6c12b5ce5b95686203260d969c3388b1c3e34dd65cad3771dcfdf958153c1", kill_on_drop: false }` [INFO] [stderr] Compiling serde v1.0.228 [INFO] [stderr] Compiling plotters-backend v0.3.7 [INFO] [stderr] Compiling num-traits v0.2.19 [INFO] [stderr] Compiling libc v0.2.176 [INFO] [stderr] Compiling textwrap v0.11.0 [INFO] [stderr] Compiling itertools v0.10.5 [INFO] [stderr] Compiling csv-core v0.1.12 [INFO] [stderr] Compiling half v1.8.3 [INFO] [stderr] Compiling cast v0.3.0 [INFO] [stderr] Compiling serde_json v1.0.145 [INFO] [stderr] Compiling syn v2.0.106 [INFO] [stderr] Compiling oorandom v11.1.5 [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)]` (part of `#[warn(unused)]`) 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] [stderr] Compiling rayon v1.11.0 [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 plotters-svg v0.3.7 [INFO] [stderr] Compiling clap v2.34.0 [INFO] [stderr] Compiling serde_cbor v0.11.2 [INFO] [stderr] Compiling csv v1.3.1 [INFO] [stderr] Compiling plotters v0.3.7 [INFO] [stderr] Compiling tinytemplate v1.2.1 [INFO] [stderr] Compiling criterion-plot v0.4.5 [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)]` (part of `#[warn(unused)]`) 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 21.15s [INFO] running `Command { std: "docker" "inspect" "73b6c12b5ce5b95686203260d969c3388b1c3e34dd65cad3771dcfdf958153c1", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "73b6c12b5ce5b95686203260d969c3388b1c3e34dd65cad3771dcfdf958153c1", kill_on_drop: false }` [INFO] [stdout] 73b6c12b5ce5b95686203260d969c3388b1c3e34dd65cad3771dcfdf958153c1 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/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" "+beta-2025-09-21" "test" "--frozen", kill_on_drop: false }` [INFO] [stdout] de0dfd7c6fcdb4f5be9f09976b7e7c8a6416499c5efae3d44b64fe3a28be46f4 [INFO] running `Command { std: "docker" "start" "-a" "de0dfd7c6fcdb4f5be9f09976b7e7c8a6416499c5efae3d44b64fe3a28be46f4", 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)]` (part of `#[warn(unused)]`) 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.10s [INFO] [stdout] [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/debug/deps/emulator_6502-9103c930aa0706ac) [INFO] [stdout] running 82 tests [INFO] [stdout] test address_modes::test::test_absolute_y_extra_cycle ... ok [INFO] [stdout] test address_modes::test::test_absolute_x_extra_cycle ... ok [INFO] [stdout] test address_modes::test::test_absolute_x ... ok [INFO] [stdout] test address_modes::test::test_immediate ... ok [INFO] [stdout] test address_modes::test::test_absolute ... ok [INFO] [stdout] test address_modes::test::test_indirect_y ... ok [INFO] [stdout] test address_modes::test::test_indirect_y_extra_cycle ... ok [INFO] [stdout] test address_modes::test::test_indirect_x ... ok [INFO] [stdout] test address_modes::test::test_indirect_y_page_edge ... ok [INFO] [stdout] test address_modes::test::test_relative ... ok [INFO] [stdout] test address_modes::test::test_zero_page ... ok [INFO] [stdout] test address_modes::test::test_absolute_y ... 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_asl ... 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 ... ok [INFO] [stdout] test opcodes::test::test_brk ... ok [INFO] [stdout] test opcodes::test::test_branch_backwards ... ok [INFO] [stdout] test opcodes::test::test_branch_fail ... ok [INFO] [stdout] test opcodes::test::test_adc_zero_carry_flags ... ok [INFO] [stdout] test opcodes::test::test_and ... ok [INFO] [stdout] test opcodes::test::test_adc_overflow_negative_flags ... ok [INFO] [stdout] test opcodes::test::test_dex_negative ... ok [INFO] [stdout] test address_modes::test::test_implied ... ok [INFO] [stdout] test address_modes::test::test_indirect_x_page_edge ... ok [INFO] [stdout] test opcodes::test::test_compare_less ... ok [INFO] [stdout] test opcodes::test::test_dex ... ok [INFO] [stdout] test opcodes::test::test_compare ... ok [INFO] [stdout] test opcodes::test::test_asl_accumulator_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_dec ... ok [INFO] [stdout] test opcodes::test::test_dec_negative ... ok [INFO] [stdout] test opcodes::test::test_and_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_dey ... ok [INFO] [stdout] test opcodes::test::test_dey_negative ... ok [INFO] [stdout] test opcodes::test::test_eor ... ok [INFO] [stdout] test opcodes::test::test_eor_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_inc_negative ... ok [INFO] [stdout] test opcodes::test::test_inc ... 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 opcodes::test::test_jsr ... ok [INFO] [stdout] test opcodes::test::test_inx ... ok [INFO] [stdout] test opcodes::test::test_inx_negative ... ok [INFO] [stdout] test opcodes::test::test_lda_negative ... ok [INFO] [stdout] test opcodes::test::test_ldx_negative ... ok [INFO] [stdout] test opcodes::test::test_ldy_negative ... ok [INFO] [stdout] test opcodes::test::test_lsr ... ok [INFO] [stdout] test opcodes::test::test_ldx ... ok [INFO] [stdout] test opcodes::test::test_lsr_accumulator_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_ldy ... ok [INFO] [stdout] test opcodes::test::test_ora_zero_flag ... ok [INFO] [stdout] test opcodes::test::test_lda ... ok [INFO] [stdout] test opcodes::test::test_pla ... ok [INFO] [stdout] test opcodes::test::test_plp ... ok [INFO] [stdout] test opcodes::test::test_rol_accumulator ... ok [INFO] [stdout] test opcodes::test::test_ror ... ok [INFO] [stdout] test opcodes::test::test_ror_accumulator ... ok [INFO] [stdout] test opcodes::test::test_rti ... ok [INFO] [stdout] test opcodes::test::test_ora ... ok [INFO] [stdout] test opcodes::test::test_rts ... ok [INFO] [stdout] test opcodes::test::test_php ... ok [INFO] [stdout] test opcodes::test::test_rol ... ok [INFO] [stdout] test opcodes::test::test_pha ... ok [INFO] [stdout] test opcodes::test::test_sbc ... ok [INFO] [stdout] test opcodes::test::test_sbc_overflow ... ok [INFO] [stdout] test opcodes::test::test_sbc_carry_negative ... ok [INFO] [stdout] test opcodes::test::test_sbc_zero ... ok [INFO] [stdout] test opcodes::test::test_stx ... ok [INFO] [stdout] test opcodes::test::test_tay ... ok [INFO] [stdout] test opcodes::test::test_tsx ... ok [INFO] [stdout] test opcodes::test::test_sta ... ok [INFO] [stdout] test opcodes::test::test_txs ... ok [INFO] [stdout] test opcodes::test::test_txa ... ok [INFO] [stdout] test opcodes::test::test_tax ... ok [INFO] [stdout] test opcodes::test::test_tya ... ok [INFO] [stdout] test opcodes::test::test_sty ... ok [INFO] [stdout] test address_modes::test::test_indirect ... ok [INFO] [stderr] Running tests/tests.rs (/opt/rustwide/target/debug/deps/tests-737211ea708b8c87) [INFO] [stdout] test address_modes::test::test_indirect_page_edge ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 82 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.05s [INFO] [stdout] [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.00s [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)]` (part of `#[warn(unused)]`) 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" "de0dfd7c6fcdb4f5be9f09976b7e7c8a6416499c5efae3d44b64fe3a28be46f4", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "de0dfd7c6fcdb4f5be9f09976b7e7c8a6416499c5efae3d44b64fe3a28be46f4", kill_on_drop: false }` [INFO] [stdout] de0dfd7c6fcdb4f5be9f09976b7e7c8a6416499c5efae3d44b64fe3a28be46f4