2013-02-12 19:56:02 +00:00
|
|
|
#!/bin/sh
|
2012-11-29 05:46:58 +00:00
|
|
|
# Copyright (C) 2012 Bastian Kleineidam
|
2013-02-12 19:56:02 +00:00
|
|
|
set -e
|
2012-11-28 17:15:12 +00:00
|
|
|
set -u
|
|
|
|
# generates a convenience test script from failed tests
|
|
|
|
|
|
|
|
script=test.sh
|
|
|
|
|
|
|
|
rm -f "$script"
|
|
|
|
echo "#!/bin/sh -e" > "$script"
|
2012-12-07 23:45:18 +00:00
|
|
|
egrep -v "^\. " testresults.txt | egrep "^F " | cut -b "3-" | sort | awk '{ print "make test PYTESTOPTS=--tb=short TESTS=" $0; }' >> "$script"
|
2012-11-28 17:15:12 +00:00
|
|
|
chmod 755 "$script"
|