summaryrefslogtreecommitdiff
path: root/qa/recheck
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2014-10-26 12:33:50 +0400
committerIgor Pashev <pashev.igor@gmail.com>2014-10-26 12:33:50 +0400
commit47e6e7c84f008a53061e661f31ae96629bc694ef (patch)
tree648a07f3b5b9d67ce19b0fd72e8caa1175c98f1a /qa/recheck
downloadpcp-debian.tar.gz
Debian 3.9.10debian/3.9.10debian
Diffstat (limited to 'qa/recheck')
-rwxr-xr-xqa/recheck15
1 files changed, 15 insertions, 0 deletions
diff --git a/qa/recheck b/qa/recheck
new file mode 100755
index 0000000..165bb29
--- /dev/null
+++ b/qa/recheck
@@ -0,0 +1,15 @@
+#!/bin/sh
+#
+# Rerun check for all the tests that failed last time ... the
+# ones with a *.out.bad file
+#
+
+list=`echo *.out.bad | sed -e 's/.out.bad//g'`
+
+if [ "$list" = "*" ]
+then
+ echo "Nothing failed, bozo!"
+ exit 1
+fi
+
+./check $* $list