From: Simon Glass Date: Mon, 13 Apr 2026 12:59:52 +0000 (-0600) Subject: test: fit: Drop the fit_signature buildconfigspec X-Git-Tag: v2026.07-rc1~21^2~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=863446256b0b03a1729c697dc694014c74cbd0be;p=thirdparty%2Fu-boot.git test: fit: Drop the fit_signature buildconfigspec The test_fit test requires buildconfigspec('fit_signature') but does not exercise signature verification. The ITS template includes a signature-1 node, but mkimage only needs TOOLS_FIT_SIGNATURE (a host tool option) to handle it, not CONFIG_FIT_SIGNATURE in the U-Boot binary. Since sandbox does not enable CONFIG_FIT_SIGNATURE, the test is silently skipped on every run. Change the marker to buildconfigspec('fit') which is all the test actually needs. Signed-off-by: Simon Glass --- diff --git a/test/py/tests/test_fit.py b/test/py/tests/test_fit.py index 619f73153a0..71c98be27cf 100755 --- a/test/py/tests/test_fit.py +++ b/test/py/tests/test_fit.py @@ -116,7 +116,7 @@ host save hostfs 0 %(loadables2_addr)x %(loadables2_out)s %(loadables2_size)x ''' @pytest.mark.boardspec('sandbox') -@pytest.mark.buildconfigspec('fit_signature') +@pytest.mark.buildconfigspec('fit') @pytest.mark.requiredtool('dtc') def test_fit(ubman): def make_fname(leaf):