dss: Failed to run "make test_others"
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. What did you do?
- clone this repo
- run
make test_others
rust version: 1.60.0 (stable and nightly all tried). OS: OSX-12.2.1
2. What did you expect to see?
compile and all tests in make test_others passed.
3. What did you see instead?
Error is as following:
Checking labrpc v0.1.0 (/Users/fangliming/Documents/GitHub/workingset/talent-plan/courses/dss/labrpc) error: this expression borrows a reference (
&str) that is immediately dereferenced by the compiler --> labrpc/src/network.rs:353:31 | 353 | if net.is_server_dead(&client_name, &server_name, server_id) { | ^^^^^^^^^^^^ help: change this to:client_name| = note:-D clippy::needless-borrowimplied by-D clippy::all= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow error: this expression borrows a reference (&str) that is immediately dereferenced by the compiler --> labrpc/src/network.rs:353:45 | 353 | if net.is_server_dead(&client_name, &server_name, server_id) { | ^^^^^^^^^^^^ help: change this to:server_name| = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrow error: could not compilelabrpcdue to 2 previous errors warning: build failed, waiting for other jobs to finish... error: build failed make: *** [check] Error 101
After correct these two error, there is still one other error. But after revising these three error, everything is ok.
Source: pingcap/talent-plan