[INFO] cloning repository https://github.com/BenKrocke/TDD_Chip8_Rust [INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "clone" "--bare" "https://github.com/BenKrocke/TDD_Chip8_Rust" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FBenKrocke%2FTDD_Chip8_Rust"` [INFO] [stderr] Cloning into bare repository '/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FBenKrocke%2FTDD_Chip8_Rust'... [INFO] running `"git" "rev-parse" "HEAD"` [INFO] [stdout] b24ffaee669a053ac10f56d3dbeb778e3998842e [INFO] testing BenKrocke/TDD_Chip8_Rust against beta-2020-06-03 for beta-1.45-1 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2FBenKrocke%2FTDD_Chip8_Rust" "/workspace/builds/worker-4/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-4/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/BenKrocke/TDD_Chip8_Rust on toolchain beta-2020-06-03 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/BenKrocke/TDD_Chip8_Rust [INFO] finished tweaking git repo https://github.com/BenKrocke/TDD_Chip8_Rust [INFO] tweaked toml for git repo https://github.com/BenKrocke/TDD_Chip8_Rust written to /workspace/builds/worker-4/source/Cargo.toml [INFO] crate git repo https://github.com/BenKrocke/TDD_Chip8_Rust already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2020-06-03" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/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" "+beta-2020-06-03" "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] f0db39b0eb73cde8d829327667e3ac6961f30255a84bacd5b3843ac44976b891 [INFO] running `"docker" "start" "-a" "f0db39b0eb73cde8d829327667e3ac6961f30255a84bacd5b3843ac44976b891"` [INFO] [stderr] sudo: setrlimit(RLIMIT_CORE): Operation not permitted [INFO] [stderr] Compiling memchr v2.2.1 [INFO] [stderr] Compiling libc v0.1.12 [INFO] [stderr] Compiling encode_unicode v0.3.6 [INFO] [stderr] Compiling num-traits v0.2.10 [INFO] [stderr] Compiling num-integer v0.1.41 [INFO] [stderr] Compiling num-iter v0.1.39 [INFO] [stderr] Compiling rand v0.6.5 [INFO] [stderr] Compiling rand_chacha v0.1.1 [INFO] [stderr] Compiling ryu v1.0.2 [INFO] [stderr] Compiling rand_pcg v0.1.2 [INFO] [stderr] Compiling rand v0.4.6 [INFO] [stderr] Compiling regex-automata v0.1.8 [INFO] [stderr] Compiling dirs v1.0.5 [INFO] [stderr] Compiling atty v0.2.13 [INFO] [stderr] Compiling rand_os v0.1.3 [INFO] [stderr] Compiling term v0.5.2 [INFO] [stderr] Compiling rand v0.3.23 [INFO] [stderr] Compiling csv-core v0.1.6 [INFO] [stderr] Compiling bstr v0.2.8 [INFO] [stderr] Compiling num-complex v0.1.43 [INFO] [stderr] Compiling num-bigint v0.1.44 [INFO] [stderr] Compiling csv v1.1.1 [INFO] [stderr] Compiling num-rational v0.1.42 [INFO] [stderr] Compiling prettytable-rs v0.8.0 [INFO] [stderr] Compiling num v0.1.42 [INFO] [stderr] Compiling sdl v0.3.6 (https://github.com/brson/rust-sdl.git#78bd0e74) [INFO] [stderr] Compiling emulator v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0583]: file not found for module `chip8` [INFO] [stderr] --> src/main.rs:8:1 [INFO] [stderr] | [INFO] [stderr] 8 | mod chip8; [INFO] [stderr] | ^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = help: to create the module `chip8`, create file "src/chip8.rs" [INFO] [stderr] [INFO] [stderr] error[E0425]: cannot find function `init_chip` in module `chip8` [INFO] [stderr] --> src/main.rs:14:27 [INFO] [stderr] | [INFO] [stderr] 14 | let mut chip = chip8::init_chip(); [INFO] [stderr] | ^^^^^^^^^ not found in `chip8` [INFO] [stderr] [INFO] [stderr] warning: unused import: `crate::display::Display` [INFO] [stderr] --> src/main.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use crate::display::Display; [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_imports)]` on by default [INFO] [stderr] [INFO] [stderr] warning: unused `#[macro_use]` import [INFO] [stderr] --> src/main.rs:4:1 [INFO] [stderr] | [INFO] [stderr] 4 | #[macro_use] extern crate prettytable; [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] [INFO] [stderr] error: aborting due to 2 previous errors; 2 warnings emitted [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0425, E0583. [INFO] [stderr] For more information about an error, try `rustc --explain E0425`. [INFO] [stderr] error: could not compile `emulator`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "f0db39b0eb73cde8d829327667e3ac6961f30255a84bacd5b3843ac44976b891"` [INFO] running `"docker" "rm" "-f" "f0db39b0eb73cde8d829327667e3ac6961f30255a84bacd5b3843ac44976b891"` [INFO] [stdout] f0db39b0eb73cde8d829327667e3ac6961f30255a84bacd5b3843ac44976b891