
28 Jun
2025
28 Jun
'25
1:24 p.m.
From: Simon Glass <sjg@chromium.org> The new Kbuild changes have broken this script, so 'make qcheck' and 'make pcheck' don't work anymore. Unset some environment variables to resolve this. Signed-off-by: Simon Glass <sjg@chromium.org> Fixes: bf030467d24 (Merge patch series "Update kbuild") --- test/run | 3 +++ 1 file changed, 3 insertions(+) diff --git a/test/run b/test/run index 768b22577c4..fc1d27004ac 100755 --- a/test/run +++ b/test/run @@ -13,6 +13,9 @@ run_test() { [ $? -ne 0 ] && failures=$((failures+1)) } +# Clean up things the Makefile created +unset MAKE MAKEFLAGS MAKELEVEL MAKEOVERRIDES MAKE_TERMERR MAKE_TERMOUT + # Select test attributes ut_mark_expr=test_ut if [ "$1" = "quick" ]; then -- 2.43.0