====================
$ make check-venv
$ ./tests/venv/bin/avocado run -t arch:aarch64,accel:tcg --keep-tmp on -- tests/acceptance/boot_linux.py{,,,,}
JOB ID : 14802f9d5016a44d2937ed7b1fec63b2eaa06e89
JOB LOG : /home/cleber/avocado/job-results/job-2020-08-06T13.19-14802f9/job.log
(1/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (153.12 s)
(2/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (149.57 s)
(3/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (154.45 s)
(4/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (148.97 s)
(5/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (150.70 s)
RESULTS : PASS 5 | ERROR 0 | FAIL 0 | SKIP 0 | WARN 0 | INTERRUPT 0 | CANCEL 0
JOB TIME : 757.50 s
Fedora 32:
==========
1. Tweak version and image hash:
---
@@ -48,7 +48,7 @@ class BootLinuxBase(Test):
image_arch = 'ppc64le'
try:
boot = vmimage.get(
- 'fedora', arch=image_arch, version='31',
+ 'fedora', arch=image_arch, version='32',
checksum=self.chksum,
algorithm='sha256',
cache_dir=self.cache_dirs[0],
@@ -160,7 +160,7 @@ class BootLinuxAarch64(BootLinux):
:avocado: tags=machine:gic-version=2
"""
- chksum = '1e18d9c0cf734940c4b5d5ec592facaed2af0ad0329383d5639c997fdf16fe49'
+ chksum = 'b367755c664a2d7a26955bbfff985855adfa2ca15e908baf15b4b176d68d3967'
def add_common_args(self):
self.vm.add_args('-bios',
---
2. Download the image before the test:
$ ./tests/venv/bin/avocado vmimage get --distro=fedora --arch aarch64 --distro-version=32
The image was downloaded:
Provider Version Architecture File
fedora 32 aarch64 /tmp/data/cache/by_location/7049001631a4b2eabf5766cc110e66d486e09821/Fedora-Cloud-Base-32-1.6.aarch64.qcow2
3. Run the tests:
$ ./tests/venv/bin/avocado run -t arch:aarch64,accel:tcg --keep-tmp on -- tests/acceptance/boot_linux.py{,,,,}
JOB ID : 09e740a41dc400f9fcbb9253f613734597fe0efc
JOB LOG : /home/cleber/avocado/job-results/job-2020-08-06T13.53-09e740a/job.log
(1/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (162.06 s)
(2/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (167.78 s)
(3/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (166.98 s)
(4/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (171.13 s)
(5/5) tests/acceptance/boot_linux.py:BootLinuxAarch64.test_virt_tcg: PASS (167.43 s)
RESULTS : PASS 5 | ERROR 0 | FAIL 0 | SKIP 0 | WARN 0 | INTERRUPT 0 | CANCEL 0
JOB TIME : 836.05 s
Ubuntu 20.04:
=============
1. Tweak version and image hash:
---
@@ -48,7 +48,7 @@ class BootLinuxBase(Test):
image_arch = 'ppc64le'
try:
boot = vmimage.get(
- 'fedora', arch=image_arch, version='31',
+ 'ubuntu', arch=image_arch, version='20.04',
checksum=self.chksum,
algorithm='sha256',
cache_dir=self.cache_dirs[0],
@@ -160,7 +160,7 @@ class BootLinuxAarch64(BootLinux):
:avocado: tags=machine:gic-version=2
"""
- chksum = '1e18d9c0cf734940c4b5d5ec592facaed2af0ad0329383d5639c997fdf16fe49'
+ chksum = '1d9e50f3381145835b11911adf611f455d674a570814086b7d6581ecc0718770'
def add_common_args(self):
self.vm.add_args('-bios',