summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNĂ­colas F. R. A. Prado <nfraprado@collabora.com>2024-01-31 17:02:43 -0500
committerShuah Khan <skhan@linuxfoundation.org>2024-02-20 15:53:20 -0700
commit2dd0b5a8fcc4f6fef307c79a3ff1d91d9595004d (patch)
treea57bd1d5ccd4d84d8738d66bcdf22c09240aef79
parentd63fde98b8929da625cc36c2f1143e837c0e6d10 (diff)
downloadlinux-2dd0b5a8fcc4f6fef307c79a3ff1d91d9595004d.tar.gz
linux-2dd0b5a8fcc4f6fef307c79a3ff1d91d9595004d.tar.bz2
linux-2dd0b5a8fcc4f6fef307c79a3ff1d91d9595004d.zip
selftests: ktap_helpers: Add a helper to finish the test
Similar to the C counterpart, keep track of the number of test cases in the test plan and add a helper function to be called at the end of the test to print the results and exit with the corresponding exit code. Signed-off-by: NĂ­colas F. R. A. Prado <nfraprado@collabora.com> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
-rw-r--r--tools/testing/selftests/kselftest/ktap_helpers.sh16
1 files changed, 14 insertions, 2 deletions
diff --git a/tools/testing/selftests/kselftest/ktap_helpers.sh b/tools/testing/selftests/kselftest/ktap_helpers.sh
index 87f93c6900c5..f2fbb914e058 100644
--- a/tools/testing/selftests/kselftest/ktap_helpers.sh
+++ b/tools/testing/selftests/kselftest/ktap_helpers.sh
@@ -15,6 +15,8 @@ KSFT_XFAIL=2
KSFT_XPASS=3
KSFT_SKIP=4
+KSFT_NUM_TESTS=0
+
ktap_print_header() {
echo "TAP version 13"
}
@@ -25,9 +27,9 @@ ktap_print_msg()
}
ktap_set_plan() {
- num_tests="$1"
+ KSFT_NUM_TESTS="$1"
- echo "1..$num_tests"
+ echo "1..$KSFT_NUM_TESTS"
}
ktap_skip_all() {
@@ -94,6 +96,16 @@ ktap_exit_fail_msg() {
exit "$KSFT_FAIL"
}
+ktap_finished() {
+ ktap_print_totals
+
+ if [ $(("$KTAP_CNT_PASS" + "$KTAP_CNT_SKIP")) -eq "$KSFT_NUM_TESTS" ]; then
+ exit "$KSFT_PASS"
+ else
+ exit "$KSFT_FAIL"
+ fi
+}
+
ktap_print_totals() {
echo "# Totals: pass:$KTAP_CNT_PASS fail:$KTAP_CNT_FAIL xfail:0 xpass:0 skip:$KTAP_CNT_SKIP error:0"
}