From mboxrd@z Thu Jan 1 00:00:00 1970 Received: by passt.top (Postfix, from userid 1000) id 28E605A0269; Wed, 26 Oct 2022 07:12:18 +0200 (CEST) From: Stefano Brivio To: passt-dev@passt.top Subject: [PATCH] test/run: Temporarily disable distribution tests Date: Wed, 26 Oct 2022 07:12:18 +0200 Message-Id: <20221026051218.1842125-1-sbrivio@redhat.com> X-Mailer: git-send-email 2.35.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: PYVJC2NOAGFWBFZII5CSDNIDJLFA234Z X-Message-ID-Hash: PYVJC2NOAGFWBFZII5CSDNIDJLFA234Z X-MailFrom: sbrivio@passt.top X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.3 Precedence: list List-Id: Development discussion and patches for passt Archived-At: <> Archived-At: List-Archive: <> List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: They're too slow to cope with current release cycles, and they haven't found bugs in months, also because clang-tidy and cppcheck would find most of them earlier. Disable them for the moment. We should pre-install gcc and make in non-x86 images, as those run on my test machine with qemu TCG, and that's the real slow-down here. Then we can re-enable them. Signed-off-by: Stefano Brivio --- test/run | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/run b/test/run index d61b2d3..cb3b6c0 100755 --- a/test/run +++ b/test/run @@ -110,12 +110,16 @@ run() { test passt_in_ns/shutdown teardown passt_in_ns + # TODO: Make those faster by at least pre-installing gcc and make on + # non-x86 images, then re-enable. +skip_distro() { setup distro test distro/debian test distro/fedora test distro/opensuse test distro/ubuntu teardown distro +} perf_finish [ ${CI} -eq 1 ] && video_stop -- 2.35.1