25 lines
455 B
Bash
Executable file
25 lines
455 B
Bash
Executable file
GRAPHS=graphs/
|
|
|
|
SUCC=()
|
|
FAILED=()
|
|
|
|
while read -r instance opt; do
|
|
linecount=$(./build/main $GRAPHS/$instance | wc -l)
|
|
result=$(($linecount - 1))
|
|
if [ "$result" -eq "$opt" ];
|
|
then
|
|
SUCC+=("$instance: $opt")
|
|
echo "$instance passed"
|
|
else
|
|
FAILED+=("$instance: $result/$opt")
|
|
echo "$instance failed: $result/$opt"
|
|
fi
|
|
done < tests.txt
|
|
|
|
echo
|
|
echo "Success:"
|
|
printf '%s\n' "${SUCC[@]}"
|
|
|
|
echo
|
|
echo "Failed:"
|
|
printf '%s\n' "${FAILED[@]}"
|