They are now very small and they do not have external dependencies. We can source them as soon as we have their path.
Signed-off-by: Paolo Bonzini <pbonz...@redhat.com> --- tests/qemu-iotests/check | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tests/qemu-iotests/check b/tests/qemu-iotests/check index dc60e17e6a..28b3444963 100755 --- a/tests/qemu-iotests/check +++ b/tests/qemu-iotests/check @@ -55,6 +55,18 @@ else build_iotests=$PWD fi +# we need common.env +if ! . "$build_iotests/common.env" +then + _init_error "failed to source common.env (make sure the qemu-iotests are run from tests/qemu-iotests in the build tree)" +fi + +# we need common.config +if ! . "$source_iotests/common.config" +then + _init_error "failed to source common.config" +fi + build_root="$build_iotests/../.." if [ -x "$build_iotests/socket_scm_helper" ] @@ -98,18 +110,6 @@ then export QEMU_NBD_PROG="$build_root/qemu-nbd" fi -# we need common.env -if ! . "$build_iotests/common.env" -then - _init_error "failed to source common.env (make sure the qemu-iotests are run from tests/qemu-iotests in the build tree)" -fi - -# we need common.config -if ! . "$source_iotests/common.config" -then - _init_error "failed to source common.config" -fi - # we need common . "$source_iotests/common" -- 2.13.3