test.sh: write errors to stdout

stdout is swallowed by the result verification
This commit is contained in:
Xiretza 2020-12-10 16:28:50 +01:00
parent ebf0723b48
commit f477ec985d
Signed by: xiretza
GPG Key ID: 17B78226F7139993
1 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ cd "$(dirname "${BASH_SOURCE[0]}")"
run_solution() {
if [ -d "$solution" ]; then
runfile=$solution/run.sh
[ -f "$runfile" ] || { echo "Error: $runfile not found"; exit 1; }
[ -f "$runfile" ] || { echo "Error: $runfile not found" >&2; exit 1; }
"$runfile" "$input"
else
case "$(basename "$solution")" in
@ -18,7 +18,7 @@ run_solution() {
python "$solution" < "$input"
;;
*)
echo "Error: Unknown solution type: $solution"
echo "Error: Unknown solution type: $solution" >&2
exit 1
;;
esac