mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
Don't try to check a solution that doesn't exist
This commit is contained in:
parent
611f9d8722
commit
50530fa3cf
@ -166,6 +166,11 @@ fn check_solutions(info_file: &InfoFile) -> Result<()> {
|
|||||||
let mut output = Vec::with_capacity(OUTPUT_CAPACITY);
|
let mut output = Vec::with_capacity(OUTPUT_CAPACITY);
|
||||||
|
|
||||||
for exercise_info in &info_file.exercises {
|
for exercise_info in &info_file.exercises {
|
||||||
|
if !Path::new(&exercise_info.sol_path()).exists() {
|
||||||
|
// No solution to check.
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
let success = exercise_info.run_solution(&mut output, &target_dir)?;
|
let success = exercise_info.run_solution(&mut output, &target_dir)?;
|
||||||
if !success {
|
if !success {
|
||||||
io::stderr().write_all(&output)?;
|
io::stderr().write_all(&output)?;
|
||||||
|
Loading…
Reference in New Issue
Block a user