add post mortem to runner.sh

This commit is contained in:
Malte Meiboom
2026-05-09 17:33:21 +02:00
parent 1921cc3e82
commit 25c7da79ce
+10 -1
View File
@@ -7,6 +7,15 @@ for TEST in ./tests/* ; do
echo "success"
else
echo "failure"
exit 1
# post mortem
echo "ls -l /var/mail"
ls -l /var/mail
echo "mailq"
mailq
echo "host example.com"
host example.com
exit 1
fi
done