diff options
author | Wainer dos Santos Moschetta | 2019-03-29 22:08:03 +0100 |
---|---|---|
committer | Alex Bennée | 2019-06-12 18:53:22 +0200 |
commit | aea439138b97d5ab5032b2e00f5d99df9ef40f71 (patch) | |
tree | e2c90f460cd91d765219604de641017fa7c4917a | |
parent | tests/vm: Port basevm to Python 3 (diff) | |
download | qemu-aea439138b97d5ab5032b2e00f5d99df9ef40f71.tar.gz qemu-aea439138b97d5ab5032b2e00f5d99df9ef40f71.tar.xz qemu-aea439138b97d5ab5032b2e00f5d99df9ef40f71.zip |
tests/vm: Fix build-centos docker-based tests run
`make vm-build-centos` run docker-based tests on CentOS. The
created containers should have network otherwise some tests
fail. Also fixed the BUILD_SCRIPT template to correctly
evaluate "V=1" for verbose output.
Signed-off-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Message-Id: <20190329210804.22121-5-wainersm@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
-rwxr-xr-x | tests/vm/centos | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/vm/centos b/tests/vm/centos index ba133ea429..7417b50af4 100755 --- a/tests/vm/centos +++ b/tests/vm/centos @@ -26,9 +26,9 @@ class CentosVM(basevm.BaseVM): export SRC_ARCHIVE=/dev/vdb; sudo chmod a+r $SRC_ARCHIVE; tar -xf $SRC_ARCHIVE; - make docker-test-block@centos7 V={verbose} J={jobs}; - make docker-test-quick@centos7 V={verbose} J={jobs}; - make docker-test-mingw@fedora V={verbose} J={jobs}; + make docker-test-block@centos7 {verbose} J={jobs} NETWORK=1; + make docker-test-quick@centos7 {verbose} J={jobs} NETWORK=1; + make docker-test-mingw@fedora {verbose} J={jobs} NETWORK=1; """ def _gen_cloud_init_iso(self): |