[INFO] updating cached repository https://github.com/fsasieta/mutlthreaded_raft_example [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] 6b8d275f933b981fa2b619c897f94b471e5b5f7b [INFO] checking fsasieta/mutlthreaded_raft_example against beta-2019-10-27 for pr-65897 [INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Ffsasieta%2Fmutlthreaded_raft_example" "/workspace/builds/worker-7/source"` [INFO] [stderr] Cloning into '/workspace/builds/worker-7/source'... [INFO] [stderr] done. [INFO] validating manifest of git repo https://github.com/fsasieta/mutlthreaded_raft_example on toolchain beta-2019-10-27 [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking git repo https://github.com/fsasieta/mutlthreaded_raft_example [INFO] finished tweaking git repo https://github.com/fsasieta/mutlthreaded_raft_example [INFO] tweaked toml for git repo https://github.com/fsasieta/mutlthreaded_raft_example written to /workspace/builds/worker-7/source/Cargo.toml [INFO] crate git repo https://github.com/fsasieta/mutlthreaded_raft_example already has a lockfile, it will not be regenerated [INFO] running `"/workspace/cargo-home/bin/cargo" "+beta-2019-10-27" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7/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=allow" "-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-2019-10-27" "check" "--frozen" "--all" "--all-targets"` [INFO] [stdout] 5a70f8c240c77f8bac7effa821b4025391a1056688777a37431f3634d5a1e609 [INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap. [INFO] running `"docker" "start" "-a" "5a70f8c240c77f8bac7effa821b4025391a1056688777a37431f3634d5a1e609"` [INFO] [stderr] Compiling protobuf v2.0.6 [INFO] [stderr] Compiling syn v0.15.42 [INFO] [stderr] Checking dirs v1.0.5 [INFO] [stderr] Checking slog-scope v4.1.2 [INFO] [stderr] Checking slog-async v2.3.0 [INFO] [stderr] Compiling regex v1.2.0 [INFO] [stderr] Checking rand_chacha v0.2.1 [INFO] [stderr] Checking rand v0.7.0 [INFO] [stderr] Checking term v0.5.2 [INFO] [stderr] Checking slog-stdlog v3.0.5 [INFO] [stderr] Checking slog-term v2.4.1 [INFO] [stderr] Checking slog-envlogger v2.1.0 [INFO] [stderr] Compiling protobuf-codegen v2.0.6 [INFO] [stderr] Compiling protobuf-build v0.8.0 [INFO] [stderr] Compiling getset v0.0.7 [INFO] [stderr] Compiling raft-proto v0.6.0-alpha [INFO] [stderr] Checking raft v0.6.0-alpha [INFO] [stderr] Checking token_interview_hw v0.1.0 (/opt/rustwide/workdir) [INFO] [stderr] error[E0425]: cannot find value `rx_stop` in this scope [INFO] [stderr] --> src/main.rs:161:45 [INFO] [stderr] | [INFO] [stderr] 161 | let recv_stop = Arc::new(Mutex::new(rx_stop)); [INFO] [stderr] | ^^^^^^^ not found in this scope [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `&std::vec::Vec: std::convert::From>` is not satisfied [INFO] [stderr] --> src/main.rs:153:52 [INFO] [stderr] | [INFO] [stderr] 153 | assert_eq!(parse_arguments(negative_number.into()), -negative_number); [INFO] [stderr] | ^^^^ the trait `std::convert::From>` is not implemented for `&std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = help: the following implementations were found: [INFO] [stderr] as std::convert::From<&[T]>> [INFO] [stderr] as std::convert::From<&mut [T]>> [INFO] [stderr] as std::convert::From>> [INFO] [stderr] as std::convert::From>> [INFO] [stderr] and 5 others [INFO] [stderr] = note: required because of the requirements on the impl of `std::convert::Into<&std::vec::Vec>` for `std::vec::Vec<{integer}>` [INFO] [stderr] [INFO] [stderr] error[E0600]: cannot apply unary operator `-` to type `std::vec::Vec<{integer}>` [INFO] [stderr] --> src/main.rs:153:61 [INFO] [stderr] | [INFO] [stderr] 153 | assert_eq!(parse_arguments(negative_number.into()), -negative_number); [INFO] [stderr] | ^^^^^^^^^^^^^^^^ cannot apply unary operator `-` [INFO] [stderr] | [INFO] [stderr] = note: an implementation of `std::ops::Neg` might be missing for `std::vec::Vec<{integer}>` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `&std::vec::Vec: std::convert::From>` is not satisfied [INFO] [stderr] --> src/main.rs:154:41 [INFO] [stderr] | [INFO] [stderr] 154 | assert_eq!(parse_arguments(zero.into()), 1); [INFO] [stderr] | ^^^^ the trait `std::convert::From>` is not implemented for `&std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = help: the following implementations were found: [INFO] [stderr] as std::convert::From<&[T]>> [INFO] [stderr] as std::convert::From<&mut [T]>> [INFO] [stderr] as std::convert::From>> [INFO] [stderr] as std::convert::From>> [INFO] [stderr] and 5 others [INFO] [stderr] = note: required because of the requirements on the impl of `std::convert::Into<&std::vec::Vec>` for `std::vec::Vec<{integer}>` [INFO] [stderr] [INFO] [stderr] error[E0277]: the trait bound `&std::vec::Vec: std::convert::From>` is not satisfied [INFO] [stderr] --> src/main.rs:155:45 [INFO] [stderr] | [INFO] [stderr] 155 | assert_eq!(parse_arguments(positive.into()), positive); [INFO] [stderr] | ^^^^ the trait `std::convert::From>` is not implemented for `&std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = help: the following implementations were found: [INFO] [stderr] as std::convert::From<&[T]>> [INFO] [stderr] as std::convert::From<&mut [T]>> [INFO] [stderr] as std::convert::From>> [INFO] [stderr] as std::convert::From>> [INFO] [stderr] and 5 others [INFO] [stderr] = note: required because of the requirements on the impl of `std::convert::Into<&std::vec::Vec>` for `std::vec::Vec<{integer}>` [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/main.rs:155:9 [INFO] [stderr] | [INFO] [stderr] 155 | assert_eq!(parse_arguments(positive.into()), positive); [INFO] [stderr] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected u64, found struct `std::vec::Vec` [INFO] [stderr] | [INFO] [stderr] = note: expected type `u64` [INFO] [stderr] found type `std::vec::Vec<{integer}>` [INFO] [stderr] = note: this error originates in a macro outside of the current crate (in Nightly builds, run with -Z external-macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] error[E0308]: mismatched types [INFO] [stderr] --> src/main.rs:164:30 [INFO] [stderr] | [INFO] [stderr] 164 | assert_eq!(terminate(recv_stop), true); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | expected reference, found struct `std::sync::Arc` [INFO] [stderr] | help: consider borrowing here: `&recv_stop` [INFO] [stderr] | [INFO] [stderr] = note: expected type `&std::sync::Arc>>` [INFO] [stderr] found type `std::sync::Arc>` [INFO] [stderr] [INFO] [stderr] error: aborting due to 7 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0277, E0308, E0425, E0600. [INFO] [stderr] For more information about an error, try `rustc --explain E0277`. [INFO] [stderr] error: could not compile `token_interview_hw`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "5a70f8c240c77f8bac7effa821b4025391a1056688777a37431f3634d5a1e609"` [INFO] running `"docker" "rm" "-f" "5a70f8c240c77f8bac7effa821b4025391a1056688777a37431f3634d5a1e609"` [INFO] [stdout] 5a70f8c240c77f8bac7effa821b4025391a1056688777a37431f3634d5a1e609