From patchwork Fri Oct 25 12:14:25 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thadeu Lima de Souza Cascardo X-Patchwork-Id: 1184095 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=kernel-team-bounces@lists.ubuntu.com; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=canonical.com Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 47032n6XFnz9sPf; Fri, 25 Oct 2019 23:14:55 +1100 (AEDT) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1iNyUT-00042H-Jg; Fri, 25 Oct 2019 12:14:49 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iNyUS-00042A-9e for kernel-team@lists.ubuntu.com; Fri, 25 Oct 2019 12:14:48 +0000 Received: from 1.general.cascardo.us.vpn ([10.172.70.58] helo=localhost.localdomain) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1iNyUR-0006kF-Mh for kernel-team@lists.ubuntu.com; Fri, 25 Oct 2019 12:14:48 +0000 From: Thadeu Lima de Souza Cascardo To: kernel-team@lists.ubuntu.com Subject: [PATCH eoan/unstable] UBUNTU: [Debian]: do not skip tests for linux-hwe-edge Date: Fri, 25 Oct 2019 09:14:25 -0300 Message-Id: <20191025121425.14345-1-cascardo@canonical.com> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: kernel-team-bounces@lists.ubuntu.com Sender: "kernel-team" Signed-off-by: Thadeu Lima de Souza Cascardo Acked-by: Kleber Sacilotto de Souza Acked-by: Po-Hsu Lin --- Applying this to eoan and unstable should be enough, as xenial linux-hwe-edge is a meta to linux-hwe as of now, and should not expect changes about that. --- debian/tests/ubuntu-regression-suite | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/tests/ubuntu-regression-suite b/debian/tests/ubuntu-regression-suite index 952d38cc9331..72a95a1e32cd 100755 --- a/debian/tests/ubuntu-regression-suite +++ b/debian/tests/ubuntu-regression-suite @@ -4,7 +4,7 @@ set -e # Only run regression-suite on kernels we can boot in canonistack source=`dpkg-parsechangelog -SSource` case $source in - linux|linux-hwe|linux-kvm|linux-oem) + linux|linux-hwe|linux-hwe-edge|linux-kvm|linux-oem) ;; *) echo "ubuntu-regression-suite is pointless, if one cannot boot the kernel"