Advent-of-Code-Aggregator/2021/complete-benchmark

33 lines
674 B
Text
Raw Normal View History

2021-11-29 11:42:45 +01:00
#!/bin/sh
day="$1"
part="$2"
day="$(printf '%02d' "$day")"
inputfile="$PWD/inputs/${day}.txt"
if ! test -f "$inputfile"; then
echo "no input available" >&2
exit 1
fi
for dir in *; do
if test -d "$dir"; then
cd "$dir"
if test -x ./prepare; then
2021-12-01 11:28:48 +01:00
echo "---------------------------------------------------------------------------------- $dir"
2021-11-29 11:42:45 +01:00
if ! ./prepare "$day" "$part" >&2; then
echo 'eh ge hebt precies niet alles geïnstalleerd staan'
else
if test -x run; then
hyperfine -n "$dir" "./run '$day' '$part' '$inputfile'"
fi
fi
fi
if test -x ./clean; then
./clean "$day" "$part" "$inputfile"
fi
cd - > /dev/null 2>&1
fi
done