From: Glenn Washburn Date: Fri, 21 Nov 2025 05:29:41 +0000 (-0600) Subject: tests: Fix nonnative tests labeled as native X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d07ebd11d6cf0219f4cbdf0f268f1b082abefdda;p=thirdparty%2Fgrub.git 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 --- 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; };