dosage/scripts/mktestscript.sh
Bastian Kleineidam faba7b0bca Fix more comics.
2012-12-08 00:45:18 +01:00

12 lines
344 B
Bash
Executable file

#!/bin/sh -e
# Copyright (C) 2012 Bastian Kleineidam
set -u
# generates a convenience test script from failed tests
script=test.sh
rm -f "$script"
echo "#!/bin/sh -e" > "$script"
egrep -v "^\. " testresults.txt | egrep "^F " | cut -b "3-" | sort | awk '{ print "make test PYTESTOPTS=--tb=short TESTS=" $0; }' >> "$script"
chmod 755 "$script"