From d07ebd11d6cf0219f4cbdf0f268f1b082abefdda Mon Sep 17 00:00:00 2001 From: Glenn Washburn Date: Thu, 20 Nov 2025 23:29:41 -0600 Subject: [PATCH] tests: Fix nonnative tests labeled as native The tests asn1_test and tpm2_key_protector_test should be labelled as nonnative tests because they run tests on the target. A clue that indicates a nonnative test is the usage of the grub-shell script. Signed-off-by: Glenn Washburn Reviewed-by: Sudhakar Kuppusamy Reviewed-by: Daniel Kiper --- Makefile.util.def | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.util.def b/Makefile.util.def index 7b91c0b61..313dd0a68 100644 --- a/Makefile.util.def +++ b/Makefile.util.def @@ -1294,13 +1294,13 @@ script = { }; script = { - testcase = native; + testcase = nonnative; name = asn1_test; common = tests/asn1_test.in; }; script = { - testcase = native; + testcase = nonnative; name = tpm2_key_protector_test; common = tests/tpm2_key_protector_test.in; };