Message ID | 20210617201153.67045-4-alex.hung@canonical.com |
---|---|
State | Accepted |
Headers | show |
Series | [1/4] tpmevlog: add to batch tests | expand |
On 17/06/2021 21:11, Alex Hung wrote: > Signed-off-by: Alex Hung <alex.hung@canonical.com> > --- > live-image/fwts-frontend-text | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/live-image/fwts-frontend-text b/live-image/fwts-frontend-text > index 815b09ee..897a922f 100755 > --- a/live-image/fwts-frontend-text > +++ b/live-image/fwts-frontend-text > @@ -380,6 +380,7 @@ do > "All" "All Batch Tests" on \ > "ACPI" "ACPI Tests" off \ > "UEFI" "UEFI Tests" off \ > + "TPM" "TPM Tests" off \ > "EBBR" "ARM EBBR Tests" off \ > "SBBR" "ARM SBBR Tests" off \ > "Recommended" "Recommended Tests" off \ > @@ -396,6 +397,7 @@ do > "All" "All Batch Tests" on \ > "ACPI" "ACPI Tests" off \ > "UEFI" "UEFI Tests" off \ > + "TPM" "TPM Tests" off \ > "Recommended" "Recommended Tests" off \ > "Recommended for IFV" "Recommended Tests for F/W Vendors" off \ > "Selected" "Select Individual Tests" off \ > @@ -430,6 +432,10 @@ do > do_test "--uefitests" 'Running UEFI Tests' > done_tests_finish > ;; > + 'TPM') > + do_test "tpm2 tpmevlog tpmevlogdump" 'Running TPM Tests' > + done_tests_finish > + ;; > 'EBBR') > do_test "--ebbr" 'Embedded Base Boot Requirements (EBBR) Tests' > done_tests_finish > Acked-by: Colin Ian King <colin.king@canonical.com>
On 6/18/21 4:11 AM, Alex Hung wrote: > Signed-off-by: Alex Hung <alex.hung@canonical.com> > --- > live-image/fwts-frontend-text | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/live-image/fwts-frontend-text b/live-image/fwts-frontend-text > index 815b09ee..897a922f 100755 > --- a/live-image/fwts-frontend-text > +++ b/live-image/fwts-frontend-text > @@ -380,6 +380,7 @@ do > "All" "All Batch Tests" on \ > "ACPI" "ACPI Tests" off \ > "UEFI" "UEFI Tests" off \ > + "TPM" "TPM Tests" off \ > "EBBR" "ARM EBBR Tests" off \ > "SBBR" "ARM SBBR Tests" off \ > "Recommended" "Recommended Tests" off \ > @@ -396,6 +397,7 @@ do > "All" "All Batch Tests" on \ > "ACPI" "ACPI Tests" off \ > "UEFI" "UEFI Tests" off \ > + "TPM" "TPM Tests" off \ > "Recommended" "Recommended Tests" off \ > "Recommended for IFV" "Recommended Tests for F/W Vendors" off \ > "Selected" "Select Individual Tests" off \ > @@ -430,6 +432,10 @@ do > do_test "--uefitests" 'Running UEFI Tests' > done_tests_finish > ;; > + 'TPM') > + do_test "tpm2 tpmevlog tpmevlogdump" 'Running TPM Tests' > + done_tests_finish > + ;; > 'EBBR') > do_test "--ebbr" 'Embedded Base Boot Requirements (EBBR) Tests' > done_tests_finish > Acked-by: Ivan Hu <ivan.hu@canonical.com>
diff --git a/live-image/fwts-frontend-text b/live-image/fwts-frontend-text index 815b09ee..897a922f 100755 --- a/live-image/fwts-frontend-text +++ b/live-image/fwts-frontend-text @@ -380,6 +380,7 @@ do "All" "All Batch Tests" on \ "ACPI" "ACPI Tests" off \ "UEFI" "UEFI Tests" off \ + "TPM" "TPM Tests" off \ "EBBR" "ARM EBBR Tests" off \ "SBBR" "ARM SBBR Tests" off \ "Recommended" "Recommended Tests" off \ @@ -396,6 +397,7 @@ do "All" "All Batch Tests" on \ "ACPI" "ACPI Tests" off \ "UEFI" "UEFI Tests" off \ + "TPM" "TPM Tests" off \ "Recommended" "Recommended Tests" off \ "Recommended for IFV" "Recommended Tests for F/W Vendors" off \ "Selected" "Select Individual Tests" off \ @@ -430,6 +432,10 @@ do do_test "--uefitests" 'Running UEFI Tests' done_tests_finish ;; + 'TPM') + do_test "tpm2 tpmevlog tpmevlogdump" 'Running TPM Tests' + done_tests_finish + ;; 'EBBR') do_test "--ebbr" 'Embedded Base Boot Requirements (EBBR) Tests' done_tests_finish
Signed-off-by: Alex Hung <alex.hung@canonical.com> --- live-image/fwts-frontend-text | 6 ++++++ 1 file changed, 6 insertions(+)