diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 18:37:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 18:37:14 +0000 |
commit | ea648e70a989cca190cd7403fe892fd2dcc290b4 (patch) | |
tree | e2b6b1c647da68b0d4d66082835e256eb30970e8 /bin/tests/system/testsummary.sh | |
parent | Initial commit. (diff) | |
download | bind9-upstream/1%9.11.5.P4+dfsg.tar.xz bind9-upstream/1%9.11.5.P4+dfsg.zip |
Adding upstream version 1:9.11.5.P4+dfsg.upstream/1%9.11.5.P4+dfsgupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | bin/tests/system/testsummary.sh | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/bin/tests/system/testsummary.sh b/bin/tests/system/testsummary.sh new file mode 100644 index 0000000..06c3566 --- /dev/null +++ b/bin/tests/system/testsummary.sh @@ -0,0 +1,59 @@ +#!/bin/sh +# +# Copyright (C) Internet Systems Consortium, Inc. ("ISC") +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# See the COPYRIGHT file distributed with this work for additional +# information regarding copyright ownership. + +# Creates the system tests output file from the various test.output files. It +# then searches that file and prints the number of tests passed, failed, not +# run. It also checks whether the IP addresses 10.53.0.[1-8] were set up and, +# if not, prints a warning. +# +# Usage: +# testsummary.sh [-n] +# +# -n Do NOT delete the individual test.output files after concatenating +# them into systests.output. +# +# Status return: +# 0 - no tests failed +# 1 - one or more tests failed + +SYSTEMTESTTOP=. +. $SYSTEMTESTTOP/conf.sh + +keepfile=0 + +while getopts "n" flag; do + case $flag in + n) keepfile=1 ;; + esac +done + +if [ `ls */test.output 2> /dev/null | wc -l` -eq 0 ]; then + echowarn "I:No 'test.output' files were found." + echowarn "I:Printing summary from pre-existing 'systests.output'." +else + cat */test.output > systests.output + if [ $keepfile -eq 0 ]; then + rm -f */test.output + fi +fi + +status=0 +echoinfo "I:System test result summary:" +echoinfo "`grep 'R:[a-z0-9_-][a-z0-9_-]*:[A-Z][A-Z]*' systests.output | cut -d':' -f3 | sort | uniq -c | sed -e 's/^/I:/'`" + +FAILED_TESTS=`grep 'R:[a-z0-9_-][a-z0-9_-]*:FAIL' systests.output | cut -d':' -f2 | sort | sed -e 's/^/I: /'` +if [ -n "${FAILED_TESTS}" ]; then + echoinfo "I:The following system tests failed:" + echoinfo "${FAILED_TESTS}" + status=1 +fi + +exit $status |