diff options
author | Jakub Kicinski <kuba@kernel.org> | 2025-02-28 21:00:07 +0300 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2025-03-04 02:03:19 +0300 |
commit | d110dbf1490b130f70fd0cd73a658ff495bc75e0 (patch) | |
tree | c53226c10efd3edf60f045157d42225660406cd6 /tools/testing/selftests/net/lib/py | |
parent | f77f12010f67259bd0e1ad18877ed27c721b627a (diff) | |
download | linux-d110dbf1490b130f70fd0cd73a658ff495bc75e0.tar.xz |
selftests: net: report output format as TAP 13 in Python tests
The Python lib based tests report that they are producing
"KTAP version 1", but really we aren't making use of any
KTAP features, like subtests. Our output is plain TAP.
Report TAP 13 instead of KTAP 1, this is what mptcp tests do,
and what NIPA knows how to parse best. For HW testing we need
precise subtest result tracking.
Acked-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
Link: https://patch.msgid.link/20250228180007.83325-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'tools/testing/selftests/net/lib/py')
-rw-r--r-- | tools/testing/selftests/net/lib/py/ksft.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/lib/py/ksft.py b/tools/testing/selftests/net/lib/py/ksft.py index fd23349fa8ca..3cfad0fd4570 100644 --- a/tools/testing/selftests/net/lib/py/ksft.py +++ b/tools/testing/selftests/net/lib/py/ksft.py @@ -207,7 +207,7 @@ def ksft_run(cases=None, globs=None, case_pfx=None, args=()): totals = {"pass": 0, "fail": 0, "skip": 0, "xfail": 0} - print("KTAP version 1") + print("TAP version 13") print("1.." + str(len(cases))) global KSFT_RESULT |