Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-03-01 Thread Daniel P . Berrangé
On Wed, Mar 01, 2023 at 10:52:14AM +, Richard W.M. Jones wrote: > On Tue, Feb 28, 2023 at 09:30:56PM +0100, Thomas Huth wrote: > > On 27/02/2023 18.40, Richard W.M. Jones wrote: > > >These two tests were failing with this error: > > > > > > stderr: > > > TAP parsing error: version number mu

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-03-01 Thread Thomas Huth
On 01/03/2023 11.52, Richard W.M. Jones wrote: On Tue, Feb 28, 2023 at 09:30:56PM +0100, Thomas Huth wrote: On 27/02/2023 18.40, Richard W.M. Jones wrote: These two tests were failing with this error: stderr: TAP parsing error: version number must be on the first line [...] Unknown

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-03-01 Thread Richard W.M. Jones
On Tue, Feb 28, 2023 at 09:30:56PM +0100, Thomas Huth wrote: > On 27/02/2023 18.40, Richard W.M. Jones wrote: > >These two tests were failing with this error: > > > > stderr: > > TAP parsing error: version number must be on the first line > > [...] > > Unknown TAP version. The first line MU

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-02-28 Thread Thomas Huth
On 27/02/2023 18.40, Richard W.M. Jones wrote: These two tests were failing with this error: stderr: TAP parsing error: version number must be on the first line [...] Unknown TAP version. The first line MUST be `TAP version `. Assuming version 12. This can be fixed by ensuring we a

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-02-28 Thread Alex Bennée
"Richard W.M. Jones" writes: > These two tests were failing with this error: > > stderr: > TAP parsing error: version number must be on the first line > [...] > Unknown TAP version. The first line MUST be `TAP version `. Assuming > version 12. > > This can be fixed by ensuring we alway

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-02-27 Thread Philippe Mathieu-Daudé
On 27/2/23 18:40, Richard W.M. Jones wrote: These two tests were failing with this error: stderr: TAP parsing error: version number must be on the first line [...] Unknown TAP version. The first line MUST be `TAP version `. Assuming version 12. This can be fixed by ensuring we alwa

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-02-27 Thread Alexander Bulekov
On 230227 1740, Richard W.M. Jones wrote: > These two tests were failing with this error: > > stderr: > TAP parsing error: version number must be on the first line > [...] > Unknown TAP version. The first line MUST be `TAP version `. Assuming > version 12. > > This can be fixed by ensuri

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-02-27 Thread Darren Kenny
On Monday, 2023-02-27 at 17:40:19 UTC, Richard W.M. Jones wrote: > These two tests were failing with this error: > > stderr: > TAP parsing error: version number must be on the first line > [...] > Unknown TAP version. The first line MUST be `TAP version `. Assuming > version 12. > > This c

Re: [PATCH] tests: Ensure TAP version is printed before other messages

2023-02-27 Thread Daniel P . Berrangé
On Mon, Feb 27, 2023 at 05:40:19PM +, Richard W.M. Jones wrote: > These two tests were failing with this error: > > stderr: > TAP parsing error: version number must be on the first line > [...] > Unknown TAP version. The first line MUST be `TAP version `. Assuming > version 12. > > T

[PATCH] tests: Ensure TAP version is printed before other messages

2023-02-27 Thread Richard W.M. Jones
These two tests were failing with this error: stderr: TAP parsing error: version number must be on the first line [...] Unknown TAP version. The first line MUST be `TAP version `. Assuming version 12. This can be fixed by ensuring we always call g_test_init first in the body of main. Th