summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xrun-tests.sh39
1 files changed, 12 insertions, 27 deletions
diff --git a/run-tests.sh b/run-tests.sh
index afeb350e899..dbf4a5e3b3c 100755
--- a/run-tests.sh
+++ b/run-tests.sh
@@ -6,7 +6,6 @@ export TZ=UTC
force="no"
head="yes"
retry="yes"
-retry_count=5
tests=""
exit_on_failure="yes"
skip_bad_tests="yes"
@@ -237,7 +236,6 @@ function run_tests()
# key = path of .t file; value = time taken to run the .t file
declare -A ELAPSEDTIMEMAP
- declare -A TESTS_NEEDED_RETRY
for t in $(find ${regression_testsdir}/tests -name '*.t' \
| LC_COLLATE=C sort) ; do
@@ -273,24 +271,18 @@ function run_tests()
prove -vfe '/bin/bash' $t
TMP_RES=$?
ELAPSEDTIMEMAP[$t]=`expr $(date +%s) - $starttime`
- cnt=0
- while [ $cnt -lt $retry_count ];
- do
- cnt=$((cnt+1))
- if [ ${TMP_RES} -ne 0 ] && [ "x${retry}" = "xyes" ] ; then
- echo "$t: bad status $TMP_RES (count: $cnt)"
- echo ""
- echo " *********************************"
- echo " * REGRESSION FAILED *"
- echo " * Retrying failed tests in case *"
- echo " * we got some spurious failures *"
- echo " *********************************"
- echo ""
- prove -vfe '/bin/bash' $t
- TESTS_NEEDED_RETRY[$t]=$cnt
- TMP_RES=$?
- fi
- done
+ if [ ${TMP_RES} -ne 0 ] && [ "x${retry}" = "xyes" ] ; then
+ echo "$t: bad status $TMP_RES"
+ echo ""
+ echo " *********************************"
+ echo " * REGRESSION FAILED *"
+ echo " * Retrying failed tests in case *"
+ echo " * we got some spurious failures *"
+ echo " *********************************"
+ echo ""
+ prove -vfe '/bin/bash' $t
+ TMP_RES=$?
+ fi
if [ ${TMP_RES} -ne 0 ] ; then
RES=${TMP_RES}
FAILED="${FAILED}${t} "
@@ -337,13 +329,6 @@ function run_tests()
fi
echo
- echo "tests which needed retry, ordered on the number of times they needed to be retried"
- for key in "${!TESTS_NEEDED_RETRY[@]}"
- do
- echo "$key - ${TESTS_NEEDED_RETRY["$key"]} times"
- done | sort -rn -k3
-
- echo
echo "Result is $RES"
echo
return ${RES}