public inbox for isar-users@googlegroups.com
 help / color / mirror / Atom feed
From: Uladzimir Bely <ubely@ilbers.de>
To: isar-users@googlegroups.com
Subject: [PATCH v2 2/3] Separate fast and full groups of run tests.
Date: Fri, 28 Oct 2022 09:39:06 +0200	[thread overview]
Message-ID: <20221028073907.30136-3-ubely@ilbers.de> (raw)
In-Reply-To: <20221028073907.30136-1-ubely@ilbers.de>

Before, "full" CI build executed both "full" and "fast" subsets
of run tests. So, it was impossible to add run test for a target
that existed only in "fast" group.

Now, run tests can be individually added for both "fast" and "full"
subsets and they won't depend on each other.

Signed-off-by: Uladzimir Bely <ubely@ilbers.de>
---
 testsuite/citest.py | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 9335b04b..b161c967 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -299,7 +299,7 @@ class VmBootTestFast(CIBaseTest):
     """
     Test QEMU image start (fast)
 
-    :avocado: tags=startvm,fast,full
+    :avocado: tags=startvm,fast
     """
     def test_arm_bullseye(self):
         self.init()
@@ -324,6 +324,22 @@ class VmBootTestFull(CIBaseTest):
 
     :avocado: tags=startvm,full
     """
+    def test_arm_bullseye(self):
+        self.init()
+        self.vm_start('arm','bullseye')
+
+    def test_arm_buster(self):
+        self.init()
+        self.vm_start('arm','buster')
+
+    def test_arm64_bullseye(self):
+        self.init()
+        self.vm_start('arm64','bullseye')
+
+    def test_amd64_bullseye(self):
+        self.init()
+        self.vm_start('amd64','bullseye')
+
     def test_i386_stretch(self):
         self.init()
         self.vm_start('i386','stretch')
-- 
2.20.1


  parent reply	other threads:[~2022-10-28  7:39 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-28  7:39 [PATCH v2 0/3] Add run tests for bookworm images Uladzimir Bely
2022-10-28  7:39 ` [PATCH v2 1/3] Small rework of groups of tests Uladzimir Bely
2022-10-28  7:39 ` Uladzimir Bely [this message]
2022-10-28  7:39 ` [PATCH v2 3/3] Add run tests for bookworm images Uladzimir Bely
2022-11-04 12:49 ` [PATCH v2 0/3] " 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=20221028073907.30136-3-ubely@ilbers.de \
    --to=ubely@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