Hey
After cloning the repository and running python x.py test
, I end up with
expected success, got: exit code: 101', src/bootstrap/compile.rs:882:8
I'm not sure how to debug this further
The error occurs in the source where:
// Make sure Cargo actually succeeded after we read all of its stdout.
let status = t!(child.wait());
if !status.success() {
panic!("command did not execute successfully: {:?}\n\
expected success, got: {}",
cargo,
status);
}