Re: [PATCH v2] kunit: tool: Fix bug in parsing test plan

2025-03-08 Thread David Gow
On Fri, 7 Mar 2025 at 02:20, Rae Moar wrote: > > A bug was identified where the KTAP below caused an infinite loop: > > TAP version 13 > ok 4 test_case > 1..4 > > The infinite loop was caused by the parser not parsing a test plan > if following a test result line. > > Fix this bug to correctly

Re: [PATCH v2] kunit: tool: Fix bug in parsing test plan

2025-03-07 Thread Brendan Jackman
On Thu, 6 Mar 2025 at 19:20, Rae Moar wrote: > > A bug was identified where the KTAP below caused an infinite loop: > > TAP version 13 > ok 4 test_case > 1..4 > > The infinite loop was caused by the parser not parsing a test plan > if following a test result line. > > Fix this bug to correctly

[PATCH v2] kunit: tool: Fix bug in parsing test plan

2025-03-06 Thread Rae Moar
A bug was identified where the KTAP below caused an infinite loop: TAP version 13 ok 4 test_case 1..4 The infinite loop was caused by the parser not parsing a test plan if following a test result line. Fix this bug to correctly parse test plan line. Signed-off-by: Rae Moar --- Changes since