[PATCH 1/5] ktap_v2: change version to 2-rc in KTAP specification

2024-11-12 Thread Rae Moar
This warning will disappear in the final commit for the release of version 2, when the "-rc" is removed. Reviewed-by: Rae Moar Signed-off-by: Frank Rowand Signed-off-by: Rae Moar --- Documentation/dev-tools/ktap.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(

[PATCH 4/5] ktap_v2: formatting fixes to ktap spec

2024-11-12 Thread Rae Moar
Fix formatting of bulleted lists on KTAP specification for new version. Signed-off-by: Rae Moar --- Documentation/dev-tools/ktap.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/dev-tools/ktap.rst b/Documentation/dev-tools/ktap.rst index d4529f4e38c7..496799e7b87a 100644

[PATCH 3/5] ktap_v2: add test metadata

2024-11-12 Thread Rae Moar
changes to the KTAP specification outline the format, location, and different types of metadata. Reviewed-by: Kees Cook Reviewed-by: David Gow Signed-off-by: Rae Moar --- Documentation/dev-tools/ktap.rst | 248 ++- 1 file changed, 244 insertions(+), 4 deletions

[PATCH 0/5] release of KTAP version 2

2024-11-12 Thread Rae Moar
has passed ok 1 suite_1 The release also includes some formatting fixes and changes to update the specification to version 2. Frank Rowand (2): ktap_v2: change version to 2-rc in KTAP specification ktap_v2: change "version 1" to "version 2" in examples Rae Moar (3):

[PATCH 2/5] ktap_v2: change "version 1" to "version 2" in examples

2024-11-12 Thread Rae Moar
From: Frank Rowand Change the "version line" in example output from "KTAP version 1" to "KTAP version 2". Change version that should be used by compliant tests from 1 to 2. Reviewed-by: Rae Moar Signed-off-by: Frank Rowand Signed-off-by: Rae Moar --- Documen

[PATCH 5/5] ktap_v2: change version to 2 in KTAP specification

2024-11-12 Thread Rae Moar
Prepare KTAP specification for the final release of version 2 by removing "-rc" in the title. This would previously cause a Sphinx warning. This series represents the final version of KTAP version 2 that includes the major addition of test metadata. Signed-off-by: Rae Moar --- Doc

Re: [PATCH] kunit: tool: Implement listing of available architectures

2025-02-21 Thread Rae Moar
eißschuh Hello, This patch looks good to me. Reviewed-by: Rae Moar Thanks! -Rae > --- > Documentation/dev-tools/kunit/run_wrapper.rst | 2 ++ > tools/testing/kunit/kunit_kernel.py | 8 > 2 files changed, 10 insertions(+) > > diff --git a/Documentation

Re: [PATCH v4 08/15] kunit: tool: Don't overwrite test status based on subtest counts

2025-07-01 Thread Rae Moar
On Thu, Jun 26, 2025 at 2:10 AM Thomas Weißschuh wrote: > > If a subtest itself reports success, but the outer testcase fails, > the whole testcase should be reported as a failure. > However the status is recalculated based on the test counts, > overwriting the outer test result. > Synthesize a fa

Re: [PATCH v4 09/15] kunit: tool: Parse skipped tests from kselftest.h

2025-07-01 Thread Rae Moar
On Thu, Jun 26, 2025 at 2:10 AM Thomas Weißschuh wrote: > > Skipped tests reported by kselftest.h use a different format than KTAP, > there is no explicit test name. Normally the test name is part of the > free-form string after the SKIP keyword: > > ok 3 # SKIP test: some reason > > Exten

Re: [PATCH v4 07/15] kunit: tool: Add test for nested test result reporting

2025-07-01 Thread Rae Moar
the tests in kunit-tool-test do check nested test output but we do lack checks for failing tests. Could we change this commit description to be something like: "Currently there is a lack of tests validating failed results reporting from nested tests."? Reviewed-by: Rae Moar Thanks! -