]> git.dujemihanovic.xyz Git - u-boot.git/commit
test/cmd/wget.c: move net_test_wget() to the cmd test suite
authorJerome Forissier <jerome.forissier@linaro.org>
Fri, 15 Nov 2024 16:45:14 +0000 (17:45 +0100)
committerTom Rini <trini@konsulko.com>
Fri, 29 Nov 2024 13:51:57 +0000 (07:51 -0600)
commit20f641987f83c4679a1181d79a546a098f11f5ad
treeae04e4e747f09c2d728307c22e451551f2a2ba91
parent6ceb861882b1583a12537e6c1b1391b16496ce33
test/cmd/wget.c: move net_test_wget() to the cmd test suite

Since net_test_wget() is testing a command and is in test/cmd it should
be in the 'cmd' test suite, not 'lib'.

Saving and restoring the values of the environment variables that the
test manipulates is necessary to avoid a regression when running the
whole ut test suite. A minimal reproducer is:

 $ ./u-boot -T -c "ut cmd net_test_wget; ut dm dm_test_eth_act" | \
     grep -E "(Test:|Failures:)"

Reported-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
test/cmd/wget.c