summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEmmanuel Dreyfus <manu@netbsd.org>2015-04-06 06:21:05 +0200
committerVijay Bellur <vbellur@redhat.com>2015-04-16 17:35:28 +0000
commit2ab703d12020178f8520674e9903f2e74a650bbd (patch)
treec11be9015afaa09dabf84c903c95498036404248
parent50b9dd3559802160aea923945fc104824fc76064 (diff)
Auto-retry failed tests to workaround spurious failures
Add a -r flag to run-tests.sh that will cause failed tests to be retried once. The idea is to reduce the impact of spurious failures: no need to retrigger in jenkins, and no need to replay all the tests. Change-Id: I176bb32678835a669992fbac7de4dd14ee5c62bc Signed-off-by: Emmanuel Dreyfus <manu@netbsd.org> Reviewed-on: http://review.gluster.org/10128 Reviewed-by: Atin Mukherjee <amukherj@redhat.com> Tested-by: Gluster Build System <jenkins@build.gluster.com> Reviewed-by: Vijay Bellur <vbellur@redhat.com>
-rwxr-xr-xrun-tests.sh41
1 files changed, 38 insertions, 3 deletions
diff --git a/run-tests.sh b/run-tests.sh
index ae41fd9a345..75f6e6879d3 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -181,6 +181,7 @@ function run_tests()
fi
done
if [ ${RES} -ne 0 ] ; then
+ FAILED=$( echo ${FAILED} | tr ' ' '\n' | sort -u )
echo "Failed tests ${FAILED}"
fi
return ${RES}
@@ -224,12 +225,42 @@ function main()
fi
}
+function main_and_retry()
+{
+ RESFILE=`mktemp /tmp/${0##*/}.XXXXXX` || exit 1
+ main "$@" | tee ${RESFILE}
+
+ FAILED=$( awk '/Failed: /{print $1}' ${RESFILE} )
+ if [ "x${FAILED}" != "x" ] ; then
+ echo ""
+ echo " *********************************"
+ echo " * REGRESSION FAILED *"
+ echo " * Retrying failed tests in case *"
+ echo " * we got some spurous failures *"
+ echo " *********************************"
+ echo ""
+ main ${FAILED}
+ fi
+
+ rm -f ${RESFILE}
+}
+
echo
echo ... GlusterFS Test Framework ...
echo
-force=no
-test "x$1" = "x-f" && { force="yes"; shift; }
+force="no"
+retry="no"
+args=`getopt fr $*`
+set -- $args
+while [ $# -gt 0 ]; do
+ case "$1" in
+ -f) force="yes" ;;
+ -r) retry="yes" ;;
+ --) shift; break;;
+ esac
+ shift
+done
# Make sure we're running as the root user
check_user
@@ -241,4 +272,8 @@ check_dependencies
check_location
# Run the tests
-main "$@"
+if [ "x${retry}" = "xyes" ] ; then
+ main_and_retry $@
+else
+ main "$@"
+fi