summaryrefslogtreecommitdiff
path: root/src/dev/check.rs
diff options
context:
space:
mode:
authormo8it <mo8it@proton.me>2024-06-01 21:51:45 +0200
committermo8it <mo8it@proton.me>2024-06-01 21:51:45 +0200
commita3ada0eee8b207870dd3774f23afbc5c4e2b3f12 (patch)
treef0dc1f5c35aa01b1362fa03ce26157ab20b97d00 /src/dev/check.rs
parent50530fa3cff5bc765291603873728799930d764b (diff)
Print the exercise solution on check
Diffstat (limited to 'src/dev/check.rs')
-rw-r--r--src/dev/check.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/dev/check.rs b/src/dev/check.rs
index 78396a8..61b1419 100644
--- a/src/dev/check.rs
+++ b/src/dev/check.rs
@@ -171,6 +171,7 @@ fn check_solutions(info_file: &InfoFile) -> Result<()> {
continue;
}
+ println!("Running the solution of {}", exercise_info.name);
let success = exercise_info.run_solution(&mut output, &target_dir)?;
if !success {
io::stderr().write_all(&output)?;