* [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python'
@ 2023-03-29 12:45 Daniel P. Berrangé
2023-03-29 13:04 ` Paolo Bonzini
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Daniel P. Berrangé @ 2023-03-29 12:45 UTC (permalink / raw)
To: qemu-devel
Cc: qemu-block, Kevin Wolf, Hanna Reitz, Alex Bennée,
Thomas Huth, Daniel P. Berrangé
The 'check' script will use "#!/usr/bin/env python3" by default
to locate python, but this doesn't work in distros which lack a
bare 'python3' binary like NetBSD.
We need to explicitly invoke 'check' by referring to the 'python'
variable in meson, which resolves to the detected python binary
that QEMU intends to use.
This fixes a regression introduced by
commit 51ab5f8bd795d8980351f8531e54995ff9e6d163
Author: Daniel P. Berrangé <berrange@redhat.com>
Date: Wed Mar 15 17:43:23 2023 +0000
iotests: register each I/O test separately with meson
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
tests/qemu-iotests/meson.build | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/tests/qemu-iotests/meson.build b/tests/qemu-iotests/meson.build
index a162f683ef..9735071a29 100644
--- a/tests/qemu-iotests/meson.build
+++ b/tests/qemu-iotests/meson.build
@@ -47,19 +47,20 @@ foreach format, speed: qemu_iotests_formats
endif
rc = run_command(
- [qemu_iotests_check_cmd] + args + ['-n'],
+ [python, qemu_iotests_check_cmd] + args + ['-n'],
check: true,
)
foreach item: rc.stdout().strip().split()
- args = ['-tap', '-' + format, item,
+ args = [qemu_iotests_check_cmd,
+ '-tap', '-' + format, item,
'--source-dir', meson.current_source_dir(),
'--build-dir', meson.current_build_dir()]
# Some individual tests take as long as 45 seconds
# Bump the timeout to 3 minutes for some headroom
# on slow machines to minimize spurious failures
test('io-' + format + '-' + item,
- qemu_iotests_check_cmd,
+ python,
args: args,
depends: qemu_iotests_binaries,
env: qemu_iotests_env,
--
2.39.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python'
2023-03-29 12:45 [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python' Daniel P. Berrangé
@ 2023-03-29 13:04 ` Paolo Bonzini
2023-03-29 13:15 ` Philippe Mathieu-Daudé
2023-03-29 17:08 ` Alex Bennée
2 siblings, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2023-03-29 13:04 UTC (permalink / raw)
To: Daniel P. Berrangé, qemu-devel
Cc: qemu-block, Kevin Wolf, Hanna Reitz, Alex Bennée,
Thomas Huth
On 3/29/23 14:45, Daniel P. Berrangé wrote:
> The 'check' script will use "#!/usr/bin/env python3" by default
> to locate python, but this doesn't work in distros which lack a
> bare 'python3' binary like NetBSD.
>
> We need to explicitly invoke 'check' by referring to the 'python'
> variable in meson, which resolves to the detected python binary
> that QEMU intends to use.
>
> This fixes a regression introduced by
>
> commit 51ab5f8bd795d8980351f8531e54995ff9e6d163
> Author: Daniel P. Berrangé <berrange@redhat.com>
> Date: Wed Mar 15 17:43:23 2023 +0000
>
> iotests: register each I/O test separately with meson
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> tests/qemu-iotests/meson.build | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
>
> diff --git a/tests/qemu-iotests/meson.build b/tests/qemu-iotests/meson.build
> index a162f683ef..9735071a29 100644
> --- a/tests/qemu-iotests/meson.build
> +++ b/tests/qemu-iotests/meson.build
> @@ -47,19 +47,20 @@ foreach format, speed: qemu_iotests_formats
> endif
>
> rc = run_command(
> - [qemu_iotests_check_cmd] + args + ['-n'],
> + [python, qemu_iotests_check_cmd] + args + ['-n'],
> check: true,
> )
>
> foreach item: rc.stdout().strip().split()
> - args = ['-tap', '-' + format, item,
> + args = [qemu_iotests_check_cmd,
> + '-tap', '-' + format, item,
> '--source-dir', meson.current_source_dir(),
> '--build-dir', meson.current_build_dir()]
> # Some individual tests take as long as 45 seconds
> # Bump the timeout to 3 minutes for some headroom
> # on slow machines to minimize spurious failures
> test('io-' + format + '-' + item,
> - qemu_iotests_check_cmd,
> + python,
> args: args,
> depends: qemu_iotests_binaries,
> env: qemu_iotests_env,
Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>
Paolo
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python'
2023-03-29 12:45 [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python' Daniel P. Berrangé
2023-03-29 13:04 ` Paolo Bonzini
@ 2023-03-29 13:15 ` Philippe Mathieu-Daudé
2023-03-29 17:08 ` Alex Bennée
2 siblings, 0 replies; 4+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-03-29 13:15 UTC (permalink / raw)
To: Daniel P. Berrangé, qemu-devel
Cc: qemu-block, Kevin Wolf, Hanna Reitz, Alex Bennée,
Thomas Huth
On 29/3/23 14:45, Daniel P. Berrangé wrote:
> The 'check' script will use "#!/usr/bin/env python3" by default
> to locate python, but this doesn't work in distros which lack a
> bare 'python3' binary like NetBSD.
>
> We need to explicitly invoke 'check' by referring to the 'python'
> variable in meson, which resolves to the detected python binary
> that QEMU intends to use.
>
> This fixes a regression introduced by
>
> commit 51ab5f8bd795d8980351f8531e54995ff9e6d163
> Author: Daniel P. Berrangé <berrange@redhat.com>
> Date: Wed Mar 15 17:43:23 2023 +0000
>
> iotests: register each I/O test separately with meson
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
> ---
> tests/qemu-iotests/meson.build | 7 ++++---
> 1 file changed, 4 insertions(+), 3 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python'
2023-03-29 12:45 [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python' Daniel P. Berrangé
2023-03-29 13:04 ` Paolo Bonzini
2023-03-29 13:15 ` Philippe Mathieu-Daudé
@ 2023-03-29 17:08 ` Alex Bennée
2 siblings, 0 replies; 4+ messages in thread
From: Alex Bennée @ 2023-03-29 17:08 UTC (permalink / raw)
To: Daniel P. Berrangé
Cc: qemu-devel, qemu-block, Kevin Wolf, Hanna Reitz, Thomas Huth
Daniel P. Berrangé <berrange@redhat.com> writes:
> The 'check' script will use "#!/usr/bin/env python3" by default
> to locate python, but this doesn't work in distros which lack a
> bare 'python3' binary like NetBSD.
>
> We need to explicitly invoke 'check' by referring to the 'python'
> variable in meson, which resolves to the detected python binary
> that QEMU intends to use.
>
> This fixes a regression introduced by
>
> commit 51ab5f8bd795d8980351f8531e54995ff9e6d163
> Author: Daniel P. Berrangé <berrange@redhat.com>
> Date: Wed Mar 15 17:43:23 2023 +0000
>
> iotests: register each I/O test separately with meson
>
> Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Queued to for-8.0/more-misc-fixes, thanks.
--
Alex Bennée
Virtualisation Tech Lead @ Linaro
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-03-29 17:09 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-29 12:45 [PATCH for 8.0] tests/qemu-iotests: explicitly invoke 'check' via 'python' Daniel P. Berrangé
2023-03-29 13:04 ` Paolo Bonzini
2023-03-29 13:15 ` Philippe Mathieu-Daudé
2023-03-29 17:08 ` Alex Bennée
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).