Re: [PATCH v2 2/9] tests/qtest: Introduce qtest_init_with_env

2023-10-11 Thread Thomas Huth
On 06/10/2023 14.39, Fabiano Rosas wrote: Add a version of qtest_init() that takes an environment variable containing the path of the QEMU binary. This allows tests to use more than one QEMU binary. If no variable is provided or the environment variable does not exist, that is not an error. Fall

Re: [PATCH v2 2/9] tests/qtest: Introduce qtest_init_with_env

2023-10-11 Thread Juan Quintela
Fabiano Rosas wrote: > Add a version of qtest_init() that takes an environment variable > containing the path of the QEMU binary. This allows tests to use more > than one QEMU binary. > > If no variable is provided or the environment variable does not exist, > that is not an error. Fallback to usi

[PATCH v2 2/9] tests/qtest: Introduce qtest_init_with_env

2023-10-06 Thread Fabiano Rosas
Add a version of qtest_init() that takes an environment variable containing the path of the QEMU binary. This allows tests to use more than one QEMU binary. If no variable is provided or the environment variable does not exist, that is not an error. Fallback to using QTEST_QEMU_BINARY. Signed-off