[INFO] updating cached repository https://github.com/rkanati/rk-pc [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"` [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] ad24983be08ba430ab2a1bf6fee1f82395ee30fd [INFO] testing rkanati/rk-pc against 1.44.0 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Frkanati%2Frk-pc" "/workspace/builds/worker-1/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-1/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/rkanati/rk-pc on toolchain 1.44.0 [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/rkanati/rk-pc [INFO] finished tweaking git repo https://github.com/rkanati/rk-pc [INFO] tweaked toml for git repo https://github.com/rkanati/rk-pc written to /workspace/builds/worker-1/source/Cargo.toml [INFO] crate git repo https://github.com/rkanati/rk-pc already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+1.44.0" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-1/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" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=warn" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+1.44.0" "build" "--frozen"` [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] [stdout] 1e028df0e270d043d45918aaa1f8862d472ce8cd444de00ec03d32c2e4ba4cdd [INFO] running `"docker" "start" "-a" "1e028df0e270d043d45918aaa1f8862d472ce8cd444de00ec03d32c2e4ba4cdd"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling bitfield v0.13.2 [INFO] [stderr] Compiling rk-pc v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error: mismatched closing delimiter: `}` [INFO] [stderr] --> src/cpu/instruction.rs:386:13 [INFO] [stderr] | [INFO] [stderr] 384 | if b0 == 0xa0 { [INFO] [stderr] | - closing delimiter possibly meant for this [INFO] [stderr] 385 | Ok((Instruction::MovA_M( [INFO] [stderr] | - unclosed delimiter [INFO] [stderr] 386 | } [INFO] [stderr] | ^ mismatched closing delimiter [INFO] [stderr] [INFO] [stderr] error: expected one of `,`, `.`, `?`, `}`, or an operator, found `0x06` [INFO] [stderr] --> src/cpu/instruction.rs:270:9 [INFO] [stderr] | [INFO] [stderr] 269 | 0x58 ... 0x5f => Ok((Instruction::PopR(ctx[0] & 7), 1)) [INFO] [stderr] | -- - expected one of `,`, `.`, `?`, `}`, or an operator [INFO] [stderr] | | [INFO] [stderr] | while parsing the `match` arm starting here [INFO] [stderr] 270 | 0x06 | 0x0e | 0x16 | 0x1e => Ok((Instruction::PopSR((ctx[0] >> 3) & 3), 1)) [INFO] [stderr] | ^^^^ unexpected token [INFO] [stderr] [INFO] [stderr] error: expected one of `,`, `.`, `?`, `}`, or an operator, found `0x06` [INFO] [stderr] --> src/cpu/instruction.rs:285:9 [INFO] [stderr] | [INFO] [stderr] 284 | 0x50 ... 0x57 => Ok((Instruction::PushR(ctx[0] & 7), 1)) [INFO] [stderr] | -- - expected one of `,`, `.`, `?`, `}`, or an operator [INFO] [stderr] | | [INFO] [stderr] | while parsing the `match` arm starting here [INFO] [stderr] 285 | 0x06 | 0x0e | 0x16 | 0x1e => Ok((Instruction::PushSR((ctx[0] >> 3) & 3), 1)) [INFO] [stderr] | ^^^^ unexpected token [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `error` [INFO] [stderr] --> src/cpu/instruction.rs:87:6 [INFO] [stderr] | [INFO] [stderr] 87 | impl error::Error for Error { } [INFO] [stderr] | ^^^^^ use of undeclared type or module `error` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `result` [INFO] [stderr] --> src/cpu/instruction.rs:89:15 [INFO] [stderr] | [INFO] [stderr] 89 | type Result = result::Result<(Instruction, usize), Error>; [INFO] [stderr] | ^^^^^^ use of undeclared type or module `result` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:267:17 [INFO] [stderr] | [INFO] [stderr] 267 | Ok((Instruction::PopRM(modrm), modrm.len())) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:282:17 [INFO] [stderr] | [INFO] [stderr] 282 | Ok((Instruction::PushRM(modrm), modrm.len())) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:356:17 [INFO] [stderr] | [INFO] [stderr] 356 | Ok((Instruction::MovR_RM(d, w, modrm), modrm.len())) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:363:21 [INFO] [stderr] | [INFO] [stderr] 363 | Ok((Instruction::MovRM_IB(w, modrm, b0), modrm.len() + 1)) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:367:21 [INFO] [stderr] | [INFO] [stderr] 367 | Ok((Instruction::MovRM_IW(w, modrm, word), modrm.len() + 2)) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:375:21 [INFO] [stderr] | [INFO] [stderr] 375 | Ok((Instruction::MovR_IW(reg, word), 3)) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:379:21 [INFO] [stderr] | [INFO] [stderr] 379 | Ok((Instruction::MovR_IB(reg, byte), 2)) [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Instruction` [INFO] [stderr] --> src/cpu/instruction.rs:385:21 [INFO] [stderr] | [INFO] [stderr] 385 | Ok((Instruction::MovA_M( [INFO] [stderr] | ^^^^^^^^^^^ use of undeclared type or module `Instruction` [INFO] [stderr] [INFO] [stderr] error[E0405]: cannot find trait `Display` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:83:6 [INFO] [stderr] | [INFO] [stderr] 83 | impl Display for Error { [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] | [INFO] [stderr] help: possible candidates are found in other modules, you can import them into scope [INFO] [stderr] | [INFO] [stderr] 2 | use bitfield::fmt::Display; [INFO] [stderr] | [INFO] [stderr] 2 | use core::fmt::Display; [INFO] [stderr] | [INFO] [stderr] 2 | use std::fmt::Display; [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error[E0412]: cannot find type `Instruction` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:89:31 [INFO] [stderr] | [INFO] [stderr] 89 | type Result = result::Result<(Instruction, usize), Error>; [INFO] [stderr] | - ^^^^^^^^^^^ not found in this scope [INFO] [stderr] | | [INFO] [stderr] | help: you might be missing a type parameter: `` [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `segpfx` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:98:53 [INFO] [stderr] | [INFO] [stderr] 98 | and, and, and, and, and, and, segpfx, daa, // 20 [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `segpfx` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:99:53 [INFO] [stderr] | [INFO] [stderr] 99 | sub, sub, sub, sub, sub, sub, segpfx, das, [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `segpfx` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:100:53 [INFO] [stderr] | [INFO] [stderr] 100 | xor, xor, xor, xor, xor, xor, segpfx, aaa, // 30 [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `segpfx` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:101:53 [INFO] [stderr] | [INFO] [stderr] 101 | cmp, cmp, cmp, cmp, cmp, cmp, segpfx, aas, [INFO] [stderr] | ^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `aas` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:101:61 [INFO] [stderr] | [INFO] [stderr] 101 | cmp, cmp, cmp, cmp, cmp, cmp, segpfx, aas, [INFO] [stderr] | ^^^ help: a function with a similar name exists: `aaa` [INFO] [stderr] ... [INFO] [stderr] 128 | fn aaa (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `aaa` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc1` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:110:5 [INFO] [stderr] | [INFO] [stderr] 110 | etc1, etc1, etc1, etc1, test, test, xchg, xchg, // 80 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc1` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:110:13 [INFO] [stderr] | [INFO] [stderr] 110 | etc1, etc1, etc1, etc1, test, test, xchg, xchg, // 80 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc1` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:110:21 [INFO] [stderr] | [INFO] [stderr] 110 | etc1, etc1, etc1, etc1, test, test, xchg, xchg, // 80 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc1` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:110:29 [INFO] [stderr] | [INFO] [stderr] 110 | etc1, etc1, etc1, etc1, test, test, xchg, xchg, // 80 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `unk` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:118:5 [INFO] [stderr] | [INFO] [stderr] 118 | unk, unk, retn, retn, les, lds, mov, mov, // c0 [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `unk` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:118:13 [INFO] [stderr] | [INFO] [stderr] 118 | unk, unk, retn, retn, les, lds, mov, mov, // c0 [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `unk` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:119:5 [INFO] [stderr] | [INFO] [stderr] 119 | unk, unk, retf, retf, int, int, into, iret, [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `unk` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:119:13 [INFO] [stderr] | [INFO] [stderr] 119 | unk, unk, retf, retf, int, int, into, iret, [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc2` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:120:5 [INFO] [stderr] | [INFO] [stderr] 120 | etc2, etc2, etc2, etc2, aam, aad, salc, xlat, // d0 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc2` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:120:13 [INFO] [stderr] | [INFO] [stderr] 120 | etc2, etc2, etc2, etc2, aam, aad, salc, xlat, // d0 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc2` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:120:21 [INFO] [stderr] | [INFO] [stderr] 120 | etc2, etc2, etc2, etc2, aam, aad, salc, xlat, // d0 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc2` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:120:29 [INFO] [stderr] | [INFO] [stderr] 120 | etc2, etc2, etc2, etc2, aam, aad, salc, xlat, // d0 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `salc` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:120:53 [INFO] [stderr] | [INFO] [stderr] 120 | etc2, etc2, etc2, etc2, aam, aad, salc, xlat, // d0 [INFO] [stderr] | ^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `unk` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:124:13 [INFO] [stderr] | [INFO] [stderr] 124 | lock, unk, rep, rep, hlt, cmc, etc3a, etc3b, // f0 [INFO] [stderr] | ^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc3a` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:124:53 [INFO] [stderr] | [INFO] [stderr] 124 | lock, unk, rep, rep, hlt, cmc, etc3a, etc3b, // f0 [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc3b` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:124:61 [INFO] [stderr] | [INFO] [stderr] 124 | lock, unk, rep, rep, hlt, cmc, etc3a, etc3b, // f0 [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc4` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:125:53 [INFO] [stderr] | [INFO] [stderr] 125 | clc, stc, cli, sti, cld, std, etc4, etc5 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `etc5` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:125:61 [INFO] [stderr] | [INFO] [stderr] 125 | clc, stc, cli, sti, cld, std, etc4, etc5 [INFO] [stderr] | ^^^^ help: a function with a similar name exists: `etc` [INFO] [stderr] ... [INFO] [stderr] 191 | fn etc (ctx: Ctx) -> Result { [INFO] [stderr] | --------------------------- similarly named function `etc` defined here [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `first` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:217:20 [INFO] [stderr] | [INFO] [stderr] 217 | let first = if first < 0x60 { first + 0x10 } else { first }; [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `first` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:217:35 [INFO] [stderr] | [INFO] [stderr] 217 | let first = if first < 0x60 { first + 0x10 } else { first }; [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find value `first` in this scope [INFO] [stderr] --> src/cpu/instruction.rs:217:57 [INFO] [stderr] | [INFO] [stderr] 217 | let first = if first < 0x60 { first + 0x10 } else { first }; [INFO] [stderr] | ^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0726]: implicit elided lifetime not allowed here [INFO] [stderr] --> src/cpu/instruction.rs:7:6 [INFO] [stderr] | [INFO] [stderr] 7 | impl Ctx { [INFO] [stderr] | ^^^- help: indicate the anonymous lifetime: `<'_>` [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around function argument [INFO] [stderr] --> src/cpu/instruction.rs:385:20 [INFO] [stderr] | [INFO] [stderr] 385 | Ok((Instruction::MovA_M( [INFO] [stderr] | ____________________^ [INFO] [stderr] 386 | | } [INFO] [stderr] | |_____________^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 385 | Ok(Instruction::MovA_M( [INFO] [stderr] 386 | [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] error: aborting due to 42 previous errors; 1 warning emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0405, E0412, E0425, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0405`. [INFO] [stderr] error: could not compile `rk-pc`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "1e028df0e270d043d45918aaa1f8862d472ce8cd444de00ec03d32c2e4ba4cdd"` [INFO] running `"docker" "rm" "-f" "1e028df0e270d043d45918aaa1f8862d472ce8cd444de00ec03d32c2e4ba4cdd"` [INFO] [stdout] 1e028df0e270d043d45918aaa1f8862d472ce8cd444de00ec03d32c2e4ba4cdd