Re: [PATCH v3 06/12] dst: add basic capability support

2024-09-05 Thread Jeremy Spewock
On Thu, Sep 5, 2024 at 5:50 AM Juraj Linkeš wrote: > >> @@ -63,6 +65,12 @@ class is to hold a subset of test cases (which could be > >> all test cases) because > >> > >> test_suite_class: type[TestSuite] > >> test_cases: list[type[TestCase]] > >> +required_capabilities: set[Capab

Re: [PATCH v3 06/12] dst: add basic capability support

2024-09-05 Thread Juraj Linkeš
On 3. 9. 2024 18:03, Dean Marx wrote: On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: A test case or suite may require certain capabilities to be present in the tested environment. Add the basic infrastructure for checking the support status of capabilities: * The Capab

Re: [PATCH v3 06/12] dst: add basic capability support

2024-09-05 Thread Juraj Linkeš
On 26. 8. 2024 18:56, Jeremy Spewock wrote: Just one comment about adding something to a doc-string, otherwise looks good to me: Reviewed-by: Jeremy Spewock On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: diff --git a/dts/framework/test_result.py b/dts/framework/test_result.py index

Re: [PATCH v3 06/12] dst: add basic capability support

2024-09-03 Thread Dean Marx
On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > A test case or suite may require certain capabilities to be present in > the tested environment. Add the basic infrastructure for checking the > support status of capabilities: > * The Capability ABC defining the common capability API > * Ext

Re: [PATCH v3 06/12] dst: add basic capability support

2024-08-26 Thread Jeremy Spewock
Just one comment about adding something to a doc-string, otherwise looks good to me: Reviewed-by: Jeremy Spewock On Wed, Aug 21, 2024 at 10:53 AM Juraj Linkeš wrote: > diff --git a/dts/framework/test_result.py b/dts/framework/test_result.py > index 306b100bc6..b4b58ef348 100644 > --- a/dts/fra

[PATCH v3 06/12] dst: add basic capability support

2024-08-21 Thread Juraj Linkeš
A test case or suite may require certain capabilities to be present in the tested environment. Add the basic infrastructure for checking the support status of capabilities: * The Capability ABC defining the common capability API * Extension of the TestProtocol with required capabilities (each test