Optimize: add the exercise file path to the bottom of the output log

This commit is contained in:
jinchaofs 2023-09-15 18:28:16 +08:00
parent 51c8da06b0
commit c1f2219ebb

View File

@ -127,6 +127,7 @@ fn compile_and_test(
exercise
);
println!("{}", output.stdout);
println!("View: {}", exercise);
Err(())
}
}
@ -149,6 +150,7 @@ fn compile<'a>(
exercise
);
println!("{}", output.stderr);
println!("View: {}", exercise);
Err(())
}
}