From: Anton Mikanovich <amikan@ilbers.de>
To: isar-users@googlegroups.com
Cc: Anton Mikanovich <amikan@ilbers.de>
Subject: [PATCH v4 08/10] CI: Move qemu-stretch targets to bullseye
Date: Mon, 17 Jan 2022 08:30:49 +0300 [thread overview]
Message-ID: <20220117053051.250400-9-amikan@ilbers.de> (raw)
In-Reply-To: <20220117053051.250400-1-amikan@ilbers.de>
Update common test targets from oldoldstable stretch to the current
stable bullseye.
Left qemui386-stretch for backward compatibility testing.
Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
testsuite/build_test/build_test.py | 19 +++++++------------
testsuite/vm_boot_test/vm_boot_test.py | 12 ++++++------
2 files changed, 13 insertions(+), 18 deletions(-)
diff --git a/testsuite/build_test/build_test.py b/testsuite/build_test/build_test.py
index f1a90c9..2fe07fc 100644
--- a/testsuite/build_test/build_test.py
+++ b/testsuite/build_test/build_test.py
@@ -27,15 +27,15 @@ class ReproTest(CIBaseTest):
def test_repro_signed(self):
targets = [
'mc:de0-nano-soc-bullseye:isar-image-base',
- 'mc:qemuarm64-stretch:isar-image-base'
+ 'mc:qemuarm64-bullseye:isar-image-base'
]
self.perform_repro_test(targets, 1)
def test_repro_unsigned(self):
targets = [
- 'mc:qemuamd64-stretch:isar-image-base',
- 'mc:qemuarm-stretch:isar-image-base'
+ 'mc:qemuamd64-bullseye:isar-image-base',
+ 'mc:qemuarm-bullseye:isar-image-base'
]
self.perform_repro_test(targets, 0)
@@ -60,11 +60,9 @@ class CrossTest(CIBaseTest):
"""
def test_cross(self):
targets = [
- 'mc:qemuarm-stretch:isar-image-base',
'mc:qemuarm-buster:isar-image-base',
'mc:qemuarm-bullseye:isar-image-base',
- 'mc:qemuarm64-stretch:isar-image-base',
- 'mc:qemuamd64-stretch:isar-image-base',
+ 'mc:qemuarm64-bullseye:isar-image-base',
'mc:de0-nano-soc-bullseye:isar-image-base',
'mc:stm32mp15x-buster:isar-image-base',
'mc:rpi-stretch:isar-image-base'
@@ -100,7 +98,7 @@ class SdkTest(CIBaseTest):
:avocado: tags=sdk,fast,full
"""
def test_sdk(self):
- targets = ['mc:qemuarm-stretch:isar-image-base']
+ targets = ['mc:qemuarm-bullseye:isar-image-base']
self.perform_build_test(targets, 1, 'do_populate_sdk')
@@ -113,20 +111,17 @@ class NoCrossTest(CIBaseTest):
"""
def test_nocross(self):
targets = [
- 'mc:qemuarm-stretch:isar-image-base',
'mc:qemuarm-buster:isar-image-base',
'mc:qemuarm-bullseye:isar-image-base',
- 'mc:qemuarm64-stretch:isar-image-base',
+ 'mc:qemuarm64-bullseye:isar-image-base',
'mc:qemui386-stretch:isar-image-base',
'mc:qemui386-buster:isar-image-base',
'mc:qemui386-bullseye:isar-image-base',
- 'mc:qemuamd64-stretch:isar-image-base',
'mc:qemuamd64-buster:isar-image-base',
'mc:qemuamd64-buster-tgz:isar-image-base',
'mc:qemuamd64-buster-cpiogz:isar-image-base',
'mc:qemuamd64-buster:isar-initramfs',
'mc:qemuamd64-bullseye:isar-image-base',
- 'mc:qemumipsel-stretch:isar-image-base',
'mc:qemumipsel-buster:isar-image-base',
'mc:qemumipsel-bullseye:isar-image-base',
'mc:qemuriscv64-sid-ports:isar-image-base',
@@ -180,7 +175,7 @@ class RebuildTest(CIBaseTest):
file.write('do_fetch_append() {\n\n}')
try:
- self.perform_build_test('mc:qemuamd64-stretch:isar-image-base',
+ self.perform_build_test('mc:qemuamd64-bullseye:isar-image-base',
is_cross_build, None)
finally:
self.restorefile(dpkgbase_file)
diff --git a/testsuite/vm_boot_test/vm_boot_test.py b/testsuite/vm_boot_test/vm_boot_test.py
index 01623c5..d609d32 100644
--- a/testsuite/vm_boot_test/vm_boot_test.py
+++ b/testsuite/vm_boot_test/vm_boot_test.py
@@ -100,17 +100,17 @@ class VmBootTestFast(VmBase):
:avocado: tags=fast,full
"""
- def test_arm_stretch(self):
- self.vm_start('arm','stretch')
+ def test_arm_bullseye(self):
+ self.vm_start('arm','bullseye')
def test_arm_buster(self):
self.vm_start('arm','buster')
- def test_arm64_stretch(self):
- self.vm_start('arm64','stretch')
+ def test_arm64_bullseye(self):
+ self.vm_start('arm64','bullseye')
- def test_amd64_stretch(self):
- self.vm_start('amd64','stretch')
+ def test_amd64_bullseye(self):
+ self.vm_start('amd64','bullseye')
class VmBootTestFull(VmBase):
--
2.25.1
next prev parent reply other threads:[~2022-01-17 5:31 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-01-17 5:30 [PATCH v4 00/10] Update testsuite targets Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 01/10] CI: Remove KFAIL for bullseye Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 02/10] meta-isar: Add bullseye config for de0-nano-soc Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 03/10] meta-isar: Add bullseye config for bananapi Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 04/10] meta-isar: Add bullseye config for nanopi-neo Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 05/10] meta-isar: Add bullseye config for stm32mp15x Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 06/10] meta-isar: Add bullseye config for nand-ubi-demo Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 07/10] CI: Cover RISC-V targets Anton Mikanovich
2022-01-17 5:30 ` Anton Mikanovich [this message]
2022-01-17 5:30 ` [PATCH v4 09/10] CI: Move image type tests to bullseye Anton Mikanovich
2022-01-17 5:30 ` [PATCH v4 10/10] CI: Remove repro from fast testing Anton Mikanovich
2022-01-24 8:01 ` [PATCH v4 00/10] Update testsuite targets Anton Mikanovich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220117053051.250400-9-amikan@ilbers.de \
--to=amikan@ilbers.de \
--cc=isar-users@googlegroups.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox