[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen master] automation: introduce a QEMU smoke test for PVH Dom0
commit 755eb6403ec722db37f1b8f8b51e0b0ab661c003 Author: Wei Liu <wei.liu2@xxxxxxxxxx> AuthorDate: Thu Jan 24 14:03:48 2019 +0000 Commit: Wei Liu <wei.liu2@xxxxxxxxxx> CommitDate: Fri Feb 1 15:13:25 2019 +0000 automation: introduce a QEMU smoke test for PVH Dom0 Make qemu-smoke-x86-64.sh take a variant argument. Make two new tests in test.yaml. Signed-off-by: Wei Liu <wei.liu2@xxxxxxxxxx> Acked-by: Doug Goldstein <cardoe@xxxxxxxxxx> Release-acked-by: Juergen Gross <jgross@xxxxxxxx> --- automation/gitlab-ci/test.yaml | 48 +++++++++++++++++++++++++++++++-- automation/scripts/qemu-smoke-x86-64.sh | 12 +++++++-- 2 files changed, 56 insertions(+), 4 deletions(-) diff --git a/automation/gitlab-ci/test.yaml b/automation/gitlab-ci/test.yaml index 8bfa0fba5f..fea097941e 100644 --- a/automation/gitlab-ci/test.yaml +++ b/automation/gitlab-ci/test.yaml @@ -5,7 +5,7 @@ qemu-smoke-x86-64-gcc: variables: CONTAINER: debian:stretch script: - - ./automation/scripts/qemu-smoke-x86-64.sh 2>&1 | tee qemu-smoke-x86-64.log + - ./automation/scripts/qemu-smoke-x86-64.sh pv 2>&1 | tee qemu-smoke-x86-64.log artifacts: paths: - smoke.serial @@ -27,7 +27,51 @@ qemu-smoke-x86-64-clang: variables: CONTAINER: debian:stretch script: - - ./automation/scripts/qemu-smoke-x86-64.sh 2>&1 | tee qemu-smoke-x86-64.log + - ./automation/scripts/qemu-smoke-x86-64.sh pv 2>&1 | tee qemu-smoke-x86-64.log + artifacts: + paths: + - smoke.serial + - '*.log' + when: always + dependencies: + - debian-unstable-clang-debug + tags: + - x86_64 + except: + - master + - smoke + - /^coverity-tested\/.*/ + - /^stable-.*/ + +qemu-smoke-x86-64-gcc-pvh: + stage: test + image: registry.gitlab.com/xen-project/xen/${CONTAINER} + variables: + CONTAINER: debian:stretch + script: + - ./automation/scripts/qemu-smoke-x86-64.sh pvh 2>&1 | tee qemu-smoke-x86-64.log + artifacts: + paths: + - smoke.serial + - '*.log' + when: always + dependencies: + - debian-stretch-gcc-debug + tags: + - x86_64 + except: + - master + - smoke + - /^coverity-tested\/.*/ + - /^stable-.*/ + +qemu-smoke-x86-64-clang-pvh: + stage: test + image: registry.gitlab.com/xen-project/xen/${CONTAINER} + variables: + CONTAINER: debian:stretch + script: + - ./automation/scripts/qemu-smoke-x86-64.sh pvh 2>&1 | tee qemu-smoke-x86-64.log artifacts: paths: - smoke.serial diff --git a/automation/scripts/qemu-smoke-x86-64.sh b/automation/scripts/qemu-smoke-x86-64.sh index 7dc2c8542b..5fa3a63dbd 100755 --- a/automation/scripts/qemu-smoke-x86-64.sh +++ b/automation/scripts/qemu-smoke-x86-64.sh @@ -2,6 +2,9 @@ set -ex +# variant should be either pv or pvh +variant=$1 + # Install QEMU export DEBIAN_FRONTENT=noninteractive apt-get -qy update @@ -11,12 +14,17 @@ apt-get -qy install qemu-system-x86 git clone https://xenbits.xen.org/git-http/xtf.git cd xtf && make -j$(nproc) && cd - +case $variant in + pvh) k=test-hvm32pae-example extra="dom0-iommu=none dom0=pvh" ;; + *) k=test-pv32pae-example extra= ;; +esac + rm -f smoke.serial set +e timeout -k 1 10 \ qemu-system-x86_64 -nographic -kernel binaries/xen \ - -initrd xtf/tests/example/test-pv32pae-example \ - -append 'loglvl=all com1=115200,,8n1 console=com1 noreboot' \ + -initrd xtf/tests/example/$k \ + -append "loglvl=all com1=115200,,8n1 console=com1 noreboot $extra" \ -m 512 -monitor none -serial file:smoke.serial set -e grep -q 'Test result: SUCCESS' smoke.serial || exit 1 -- generated by git-patchbot for /home/xen/git/xen.git#master _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |