Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-22 Thread Tom Rini
On Thu, Aug 22, 2024 at 08:22:59AM -0600, Simon Glass wrote: > Hi Tom, > > On Thu, 22 Aug 2024 at 08:11, Tom Rini wrote: > > > > On Wed, Aug 21, 2024 at 09:00:33PM -0600, Simon Glass wrote: > > > Hi Tom, > > > > > > On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > > > > > > > Hi Tom, > > > >

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-22 Thread Simon Glass
Hi Tom, On Thu, 22 Aug 2024 at 08:11, Tom Rini wrote: > > On Wed, Aug 21, 2024 at 09:00:33PM -0600, Simon Glass wrote: > > Hi Tom, > > > > On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > > > > > Hi Tom, > > > > > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > > > > > On Tue, Jun 2

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-22 Thread Tom Rini
On Wed, Aug 21, 2024 at 09:00:33PM -0600, Simon Glass wrote: > Hi Tom, > > On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > > > Hi Tom, > > > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > > > On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > > > > Hi Tom, > > > > > > >

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-08-21 Thread Simon Glass
Hi Tom, On Wed, 26 Jun 2024 at 02:00, Simon Glass wrote: > > Hi Tom, > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > > > Hi Tom, > > > > > > On Mon, 24 Jun 2024 at 19:06, Tom Rini wrote: > > > > > > > > On Sun, Jun 23, 202

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-26 Thread Tom Rini
On Wed, Jun 26, 2024 at 07:56:24AM -0600, Tom Rini wrote: > On Wed, Jun 26, 2024 at 09:00:42AM +0100, Simon Glass wrote: > > Hi Tom, > > > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > > > On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > > > > Hi Tom, > > > > > > > > On Mo

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-26 Thread Tom Rini
On Wed, Jun 26, 2024 at 09:00:42AM +0100, Simon Glass wrote: > Hi Tom, > > On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > > > On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > > > Hi Tom, > > > > > > On Mon, 24 Jun 2024 at 19:06, Tom Rini wrote: > > > > > > > > On Sun, Jun 23, 20

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-26 Thread Simon Glass
Hi Tom, On Tue, 25 Jun 2024 at 15:14, Tom Rini wrote: > > On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > > Hi Tom, > > > > On Mon, 24 Jun 2024 at 19:06, Tom Rini wrote: > > > > > > On Sun, Jun 23, 2024 at 02:32:00PM -0600, Simon Glass wrote: > > > > > > > When a test returns -EAG

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-25 Thread Tom Rini
On Tue, Jun 25, 2024 at 01:38:00PM +0100, Simon Glass wrote: > Hi Tom, > > On Mon, 24 Jun 2024 at 19:06, Tom Rini wrote: > > > > On Sun, Jun 23, 2024 at 02:32:00PM -0600, Simon Glass wrote: > > > > > When a test returns -EAGAIN this should not be considered a failure. > > > Fix what seems to be a

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-25 Thread Simon Glass
Hi Tom, On Mon, 24 Jun 2024 at 19:06, Tom Rini wrote: > > On Sun, Jun 23, 2024 at 02:32:00PM -0600, Simon Glass wrote: > > > When a test returns -EAGAIN this should not be considered a failure. > > Fix what seems to be a problem case, where the pytests see a failure > > when a test has merely bee

Re: [PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-24 Thread Tom Rini
On Sun, Jun 23, 2024 at 02:32:00PM -0600, Simon Glass wrote: > When a test returns -EAGAIN this should not be considered a failure. > Fix what seems to be a problem case, where the pytests see a failure > when a test has merely been skipped. > > Signed-off-by: Simon Glass > --- > > (no changes

[PATCH v3 06/19] test: Avoid failing skipped tests

2024-06-23 Thread Simon Glass
When a test returns -EAGAIN this should not be considered a failure. Fix what seems to be a problem case, where the pytests see a failure when a test has merely been skipped. Signed-off-by: Simon Glass --- (no changes since v1) test/test-main.c | 16 +++- 1 file changed, 11 inserti