From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 7156918641569562624 X-Received: by 2002:a05:6512:2524:b0:4ab:ae9c:8491 with SMTP id be36-20020a056512252400b004abae9c8491mr9897708lfb.323.1666942751226; Fri, 28 Oct 2022 00:39:11 -0700 (PDT) X-BeenThere: isar-users@googlegroups.com Received: by 2002:a05:6512:3245:b0:494:6c7d:cf65 with SMTP id c5-20020a056512324500b004946c7dcf65ls1213354lfr.2.-pod-prod-gmail; Fri, 28 Oct 2022 00:39:09 -0700 (PDT) X-Google-Smtp-Source: AMsMyM4Aiz3Q3uKWaWLgkXGDkUhxAh5onWqgOcxX/uwZRjbNRCNoROWSUdLIJBRVIbsSZYUcwVgM X-Received: by 2002:ac2:4468:0:b0:4a7:8eae:b342 with SMTP id y8-20020ac24468000000b004a78eaeb342mr15244520lfl.310.1666942749504; Fri, 28 Oct 2022 00:39:09 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1666942749; cv=none; d=google.com; s=arc-20160816; b=bqZDhl+zeRFtzrRShAuRvzhAUa6dUCoP8czQkU/7ATYihJyCWgQCcqyd/y/fkcO/mS ngYiLmqLv2NL4ahblPqa+oIcfnrfBoVlS1mQVas1jrj8J9KvKPUy7aUkhYHipp8+RHOG UpLIviT7bacCMu+JsmrjF1znLVG/gYILnn0L6x2Y33pnGw2nm5qm6f3Tk5cvqvOhRY7z 7pWzgKWSlXYQu+bJJ38bqGa3v+9pwnAA4/SxwkEPVvG1x7IhUiYXsJQysFzTmgX9kHIO Cc/y17x//YPtH2YRu1GxkS7Kpk0goDusk6RWHX324LAzkFGk+kY6Jfj1MyJUKI76tWt5 2mVw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=content-transfer-encoding:mime-version:references:in-reply-to :message-id:date:subject:to:from; bh=iPlB+LnhqOfkAUcrw3Pqu38ruyTgz0q2jvwcaRpjaKk=; b=YBuhw7tfe2hH7BSSL1n4jks3e5TRbbhICypq45OyuLDENBT1AR7ETtI5cWJ45pUBt2 yrCyTHy9qp3mD1UX0hiFNLcJSPR/+JVYmr2zaD52jNlXzdgdOH+6bxlmPB8CmiGsUiCV v5ZHSpqIxm7vYM7Ze9WrXMJO5hflXmAJJvYRkA9gjplrANhG0pE2Be2HOi2AV7KqG9LM UmaB0IXNeFccVW2XvFs4n3Lf9SAfYjm37urqkeH5Z3H9lSv9CJYC0wh64VzpVEHhcX+4 cr5FlUKTlukysy/wBmQLVZA6vZwfknZqF1pe+NJ2SbIok7rDG2NrRO/eGnqEdSMtDAAu 9IoA== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of ubely@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=ubely@ilbers.de Return-Path: Received: from shymkent.ilbers.de (shymkent.ilbers.de. [85.214.156.166]) by gmr-mx.google.com with ESMTPS id p16-20020a2ea4d0000000b0027737e93a12si14743ljm.0.2022.10.28.00.39.09 for (version=TLS1_2 cipher=ECDHE-ECDSA-CHACHA20-POLY1305 bits=256/256); Fri, 28 Oct 2022 00:39:09 -0700 (PDT) Received-SPF: pass (google.com: domain of ubely@ilbers.de designates 85.214.156.166 as permitted sender) client-ip=85.214.156.166; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of ubely@ilbers.de designates 85.214.156.166 as permitted sender) smtp.mailfrom=ubely@ilbers.de Received: from baighyz.m.ilbers.de (host-80-81-17-52.static.customer.m-online.net [80.81.17.52]) (authenticated bits=0) by shymkent.ilbers.de (8.15.2/8.15.2/Debian-8+deb9u1) with ESMTPSA id 29S7d7HM032480 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Fri, 28 Oct 2022 09:39:08 +0200 From: Uladzimir Bely 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 Message-Id: <20221028073907.30136-3-ubely@ilbers.de> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20221028073907.30136-1-ubely@ilbers.de> References: <20221028073907.30136-1-ubely@ilbers.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-1.0 required=5.0 tests=ALL_TRUSTED autolearn=unavailable autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on shymkent.ilbers.de X-TUID: AO/k5QdCXD4A 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 --- 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