From patchwork Tue Jun 8 19:50:48 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Hung X-Patchwork-Id: 1489612 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=fwts-devel-bounces@lists.ubuntu.com; receiver=) 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 4G017p4d3Jz9sWQ for ; Wed, 9 Jun 2021 05:51:02 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1lqhkY-0006ux-OT; Tue, 08 Jun 2021 19:50:58 +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 1lqhkT-0006uT-0f for fwts-devel@lists.ubuntu.com; Tue, 08 Jun 2021 19:50:53 +0000 Received: from d75-158-101-9.abhsia.telus.net ([75.158.101.9] helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.93) (envelope-from ) id 1lqhkS-0003jw-EU; Tue, 08 Jun 2021 19:50:52 +0000 From: Alex Hung To: fwts-devel@lists.ubuntu.com Subject: [PATCH 1/2] live-image: remove unnecessary -skip-test=s3,s4 argument Date: Tue, 8 Jun 2021 13:50:48 -0600 Message-Id: <20210608195049.562002-1-alex.hung@canonical.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" s3 and s4 are never included in these tests. Signed-off-by: Alex Hung Acked-by: Colin Ian King Acked-by: Ivan Hu --- live-image/fwts-frontend-text | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/live-image/fwts-frontend-text b/live-image/fwts-frontend-text index 6e267497..430ea271 100755 --- a/live-image/fwts-frontend-text +++ b/live-image/fwts-frontend-text @@ -401,22 +401,22 @@ do FWTS_OPTIONS="--batch" ;; *) - FWTS_OPTIONS="--batch --uefitests --skip-test=s3,s4" + FWTS_OPTIONS="--batch --uefitests" ;; esac do_test "${FWTS_OPTIONS}" 'Running Batch Tests' done_tests_finish ;; 'ACPI') - do_test "--acpitests --skip-test=s3,s4" 'Running ACPI Tests' + do_test "--acpitests" 'Running ACPI Tests' done_tests_finish ;; 'UEFI') - do_test "--uefitests --skip-test=s3,s4" 'Running UEFI Tests' + do_test "--uefitests" 'Running UEFI Tests' done_tests_finish ;; 'SBBR') - do_test "--sbbr --skip-test=s3,s4" 'Server Base Boot Requirements (SBBR) Tests' + do_test "--sbbr" 'Server Base Boot Requirements (SBBR) Tests' done_tests_finish ;; 'Recommended') @@ -425,7 +425,7 @@ do FWTS_OPTIONS="--batch" ;; *) - FWTS_OPTIONS="version cpufreq maxfreq msr mtrr nx virt aspm dmicheck apicedge klog oops --acpitests --uefitests --log-level=medium --skip-test=s3,s4" + FWTS_OPTIONS="version cpufreq maxfreq msr mtrr nx virt aspm dmicheck apicedge klog oops --acpitests --uefitests --log-level=medium" ;; esac @@ -433,7 +433,7 @@ do done_tests_finish ;; 'Recommended for IFV') - FWTS_OPTIONS="version cpufreq maxfreq msr mtrr nx virt aspm dmicheck apicedge klog oops --acpitests --uefitests --ifv --skip-test=s3,s4" + FWTS_OPTIONS="version cpufreq maxfreq msr mtrr nx virt aspm dmicheck apicedge klog oops --acpitests --uefitests --ifv" do_test "${FWTS_OPTIONS}" 'Running Recommended Tests for F/W Vendors' done_tests_finish ;;