mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
test: aggregate-results updates
notmuch-test will now call aggregate-results.sh with file list that it compiles based on the test ran, and aggregate-results will report failure is any of the test files are missing. With this notmuch-test no longer has to exit in non-parallel run if some test fail to write its report file -- so it works as parallel tests in this sense. Changed test_done() in test-lib.sh write report file in one write(2), so there is (even) less chance it being partially written. Also, now it writes 'total' last and aggregate-results.sh expects this line to exist in all report files for reporting to be successful. Added 'set -eu' to notmuch-test and modified code to work with these settings. That makes it harder to get mistakes slipped into committed code.
This commit is contained in:
parent
651a1b085b
commit
6f0f83660e
3 changed files with 54 additions and 30 deletions
|
@ -8,9 +8,16 @@ failed=0
|
||||||
broken=0
|
broken=0
|
||||||
total=0
|
total=0
|
||||||
all_skipped=0
|
all_skipped=0
|
||||||
|
rep_failed=0
|
||||||
|
|
||||||
for file
|
for file
|
||||||
do
|
do
|
||||||
|
if [ ! -f "$file" ]; then
|
||||||
|
echo "'$file' does not exist!"
|
||||||
|
rep_failed=$((rep_failed + 1))
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
has_total=0
|
||||||
while read type value
|
while read type value
|
||||||
do
|
do
|
||||||
case $type in
|
case $type in
|
||||||
|
@ -24,18 +31,23 @@ do
|
||||||
broken=$((broken + value)) ;;
|
broken=$((broken + value)) ;;
|
||||||
total)
|
total)
|
||||||
total=$((total + value))
|
total=$((total + value))
|
||||||
|
has_total=1
|
||||||
if [ "$value" -eq 0 ]; then
|
if [ "$value" -eq 0 ]; then
|
||||||
all_skipped=$((all_skipped + 1))
|
all_skipped=$((all_skipped + 1))
|
||||||
fi
|
fi
|
||||||
esac
|
esac
|
||||||
done <"$file"
|
done <"$file"
|
||||||
|
if [ "$has_total" -eq 0 ]; then
|
||||||
|
echo "'$file' lacks 'total ...'; results may be inconsistent."
|
||||||
|
failed=$((failed + 1))
|
||||||
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
pluralize_s () { [ "$1" -eq 1 ] && s='' || s='s'; }
|
pluralize_s () { [ "$1" -eq 1 ] && s='' || s='s'; }
|
||||||
|
|
||||||
echo "Notmuch test suite complete."
|
echo "Notmuch test suite complete."
|
||||||
|
|
||||||
if [ "$fixed" -eq 0 ] && [ "$failed" -eq 0 ]; then
|
if [ "$fixed" -eq 0 ] && [ "$failed" -eq 0 ] && [ "$rep_failed" -eq 0 ]; then
|
||||||
pluralize_s "$total"
|
pluralize_s "$total"
|
||||||
printf "All $total test$s "
|
printf "All $total test$s "
|
||||||
if [ "$broken" -eq 0 ]; then
|
if [ "$broken" -eq 0 ]; then
|
||||||
|
@ -70,10 +82,16 @@ if [ "$all_skipped" -ne 0 ]; then
|
||||||
echo "All tests in $all_skipped file$s skipped."
|
echo "All tests in $all_skipped file$s skipped."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [ "$rep_failed" -ne 0 ]; then
|
||||||
|
pluralize_s "$rep_failed"
|
||||||
|
echo "$rep_failed test$s failed to report results."
|
||||||
|
fi
|
||||||
|
|
||||||
# Note that we currently do not consider skipped tests as failing the
|
# Note that we currently do not consider skipped tests as failing the
|
||||||
# build.
|
# build.
|
||||||
|
|
||||||
if [ "$success" -gt 0 ] && [ "$fixed" -eq 0 ] && [ "$failed" -eq 0 ]
|
if [ "$success" -gt 0 ] && [ "$fixed" -eq 0 ] &&
|
||||||
|
[ "$failed" -eq 0 ] && [ "$rep_failed" -eq 0 ]
|
||||||
then
|
then
|
||||||
exit 0
|
exit 0
|
||||||
else
|
else
|
||||||
|
|
|
@ -18,12 +18,14 @@ fi
|
||||||
# Ensure NOTMUCH_SRCDIR and NOTMUCH_BUILDDIR are set.
|
# Ensure NOTMUCH_SRCDIR and NOTMUCH_BUILDDIR are set.
|
||||||
. $(dirname "$0")/export-dirs.sh || exit 1
|
. $(dirname "$0")/export-dirs.sh || exit 1
|
||||||
|
|
||||||
|
set -eu
|
||||||
|
|
||||||
TESTS=
|
TESTS=
|
||||||
for test in $NOTMUCH_TESTS; do
|
for test in ${NOTMUCH_TESTS-}; do
|
||||||
TESTS="$TESTS $NOTMUCH_SRCDIR/test/$test"
|
TESTS="$TESTS $NOTMUCH_SRCDIR/test/$test"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ -z "$TESTS" ]]; then
|
if [ -z "$TESTS" ]; then
|
||||||
TESTS="$NOTMUCH_SRCDIR/test/T[0-9][0-9][0-9]-*.sh"
|
TESTS="$NOTMUCH_SRCDIR/test/T[0-9][0-9][0-9]-*.sh"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -44,43 +46,46 @@ else
|
||||||
TEST_TIMEOUT_CMD=""
|
TEST_TIMEOUT_CMD=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
trap 'e=$?; kill $!; exit $e' HUP INT TERM
|
|
||||||
|
|
||||||
META_FAILURE=
|
META_FAILURE=
|
||||||
|
RES=0
|
||||||
# Run the tests
|
# Run the tests
|
||||||
if test -z "$NOTMUCH_TEST_SERIALIZE" && command -v parallel >/dev/null ; then
|
if test -z "${NOTMUCH_TEST_SERIALIZE-}" && command -v parallel >/dev/null ; then
|
||||||
test -t 1 && export COLORS_WITHOUT_TTY=t || :
|
test -t 1 && export COLORS_WITHOUT_TTY=t || :
|
||||||
if parallel --version 2>&1 | grep -q GNU ; then
|
if parallel --version 2>&1 | grep -q GNU ; then
|
||||||
echo "INFO: running tests with GNU parallel"
|
echo "INFO: running tests with GNU parallel"
|
||||||
printf '%s\n' $TESTS | $TEST_TIMEOUT_CMD parallel
|
printf '%s\n' $TESTS | $TEST_TIMEOUT_CMD parallel || RES=$?
|
||||||
else
|
else
|
||||||
echo "INFO: running tests with moreutils parallel"
|
echo "INFO: running tests with moreutils parallel"
|
||||||
$TEST_TIMEOUT_CMD parallel -- $TESTS
|
$TEST_TIMEOUT_CMD parallel -- $TESTS || RES=$?
|
||||||
fi
|
fi
|
||||||
RES=$?
|
if [ $RES != 0 ]; then
|
||||||
if [[ $RES != 0 ]]; then
|
|
||||||
META_FAILURE="parallel test suite returned error code $RES"
|
META_FAILURE="parallel test suite returned error code $RES"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
|
trap 'e=$?; trap - 0; kill ${!-}; exit $e' 0 HUP INT TERM
|
||||||
for test in $TESTS; do
|
for test in $TESTS; do
|
||||||
$TEST_TIMEOUT_CMD $test "$@" &
|
$TEST_TIMEOUT_CMD $test "$@" &
|
||||||
wait $!
|
wait $! && ev=0 || ev=$?
|
||||||
# If the test failed without producing results, then it aborted,
|
test $ev = 0 || RES=$ev
|
||||||
# so we should abort, too.
|
|
||||||
RES=$?
|
|
||||||
testname=$(basename $test .sh)
|
|
||||||
if [[ $RES != 0 && ! -e "$NOTMUCH_BUILDDIR/test/test-results/$testname" ]]; then
|
|
||||||
META_FAILURE="Aborting on $testname (returned $RES)"
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
done
|
||||||
|
trap - 0 HUP INT TERM
|
||||||
|
if [ $RES != 0 ]; then
|
||||||
|
META_FAILURE="some tests failed; first failed returned error code $RES"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
trap - HUP INT TERM
|
|
||||||
|
|
||||||
# Report results
|
# Report results
|
||||||
|
RESULT_FILES=
|
||||||
|
for file in $TESTS
|
||||||
|
do
|
||||||
|
file=${file##*/} # drop leading path components
|
||||||
|
file=${file%.sh} # drop trailing '.sh'
|
||||||
|
RESULT_FILES="$RESULT_FILES $NOTMUCH_BUILDDIR/test/test-results/$file"
|
||||||
|
done
|
||||||
|
|
||||||
echo
|
echo
|
||||||
$NOTMUCH_SRCDIR/test/aggregate-results.sh $NOTMUCH_BUILDDIR/test/test-results/*
|
$NOTMUCH_SRCDIR/test/aggregate-results.sh $RESULT_FILES && ev=0 || ev=$?
|
||||||
ev=$?
|
|
||||||
if [ -n "$META_FAILURE" ]; then
|
if [ -n "$META_FAILURE" ]; then
|
||||||
printf 'ERROR: %s\n' "$META_FAILURE"
|
printf 'ERROR: %s\n' "$META_FAILURE"
|
||||||
if [ $ev = 0 ]; then
|
if [ $ev = 0 ]; then
|
||||||
|
|
|
@ -858,15 +858,16 @@ test_when_finished () {
|
||||||
test_done () {
|
test_done () {
|
||||||
GIT_EXIT_OK=t
|
GIT_EXIT_OK=t
|
||||||
test_results_dir="$TEST_DIRECTORY/test-results"
|
test_results_dir="$TEST_DIRECTORY/test-results"
|
||||||
mkdir -p "$test_results_dir"
|
test -d "$test_results_dir" || mkdir "$test_results_dir"
|
||||||
test_results_path="$test_results_dir/$this_test"
|
test_results_path="$test_results_dir/$this_test"
|
||||||
|
|
||||||
echo "total $test_count" >> $test_results_path
|
printf %s\\n \
|
||||||
echo "success $test_success" >> $test_results_path
|
"success $test_success" \
|
||||||
echo "fixed $test_fixed" >> $test_results_path
|
"fixed $test_fixed" \
|
||||||
echo "broken $test_broken" >> $test_results_path
|
"broken $test_broken" \
|
||||||
echo "failed $test_failure" >> $test_results_path
|
"failed $test_failure" \
|
||||||
echo "" >> $test_results_path
|
"total $test_count" \
|
||||||
|
> $test_results_path
|
||||||
|
|
||||||
[ -n "$EMACS_SERVER" ] && test_emacs '(kill-emacs)'
|
[ -n "$EMACS_SERVER" ] && test_emacs '(kill-emacs)'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue