Skip to content

Commit

Permalink
selftests: ktap_helpers: Add a helper to finish the test
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
nfraprado authored and shuahkh committed Feb 20, 2024
1 parent d63fde9 commit 2dd0b5a
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions tools/testing/selftests/kselftest/ktap_helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ KSFT_XFAIL=2
KSFT_XPASS=3
KSFT_SKIP=4

KSFT_NUM_TESTS=0

ktap_print_header() {
echo "TAP version 13"
}
Expand All @@ -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() {
Expand Down Expand Up @@ -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"
}

0 comments on commit 2dd0b5a

Please sign in to comment.