Advent-of-Code-Aggregator/2021/complete-benchmark
Felix Van der Jeugt 3ea942716c
Revert "update submodules"
This reverts commit 95a0d07d0f.
2021-12-12 17:31:48 +01:00

31 lines
665 B
Bash
Executable file

#!/bin/sh
day="$(printf '%02d' ${1##0})"
part="$2"
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
echo "---------------------------------------------------------------------------------- $dir"
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