Message ID | 20241010211857.2193076-1-kuba@kernel.org (mailing list archive) |
---|---|
State | Accepted |
Commit | ec35b0c53cc7398143315d42342a9798094dada7 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net-next] selftests: drv-net: add missing trailing backslash | expand |
On Thu, Oct 10, 2024 at 02:18:57PM -0700, Jakub Kicinski wrote: > Commit b3ea416419c8 ("testing: net-drv: add basic shaper test") > removed the trailing backslash from the last entry. We have > a terminating comment here to avoid having to modify the last > line when adding at the end. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > --- > tools/testing/selftests/drivers/net/Makefile | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tools/testing/selftests/drivers/net/Makefile b/tools/testing/selftests/drivers/net/Makefile > index 25aec5c081df..0fec8f9801ad 100644 > --- a/tools/testing/selftests/drivers/net/Makefile > +++ b/tools/testing/selftests/drivers/net/Makefile > @@ -9,7 +9,7 @@ TEST_PROGS := \ > ping.py \ > queues.py \ > stats.py \ > - shaper.py > + shaper.py \ > # end of TEST_PROGS > > include ../../lib.mk > -- Reviewed-by: Joe Damato <jdamato@fastly.com>
Jakub Kicinski <kuba@kernel.org> writes: > Commit b3ea416419c8 ("testing: net-drv: add basic shaper test") > removed the trailing backslash from the last entry. We have > a terminating comment here to avoid having to modify the last > line when adding at the end. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Donald Hunter <donald.hunter@gmail.com>
Hello: This patch was applied to netdev/net-next.git (main) by Jakub Kicinski <kuba@kernel.org>: On Thu, 10 Oct 2024 14:18:57 -0700 you wrote: > Commit b3ea416419c8 ("testing: net-drv: add basic shaper test") > removed the trailing backslash from the last entry. We have > a terminating comment here to avoid having to modify the last > line when adding at the end. > > Signed-off-by: Jakub Kicinski <kuba@kernel.org> > > [...] Here is the summary with links: - [net-next] selftests: drv-net: add missing trailing backslash https://git.kernel.org/netdev/net-next/c/ec35b0c53cc7 You are awesome, thank you!
diff --git a/tools/testing/selftests/drivers/net/Makefile b/tools/testing/selftests/drivers/net/Makefile index 25aec5c081df..0fec8f9801ad 100644 --- a/tools/testing/selftests/drivers/net/Makefile +++ b/tools/testing/selftests/drivers/net/Makefile @@ -9,7 +9,7 @@ TEST_PROGS := \ ping.py \ queues.py \ stats.py \ - shaper.py + shaper.py \ # end of TEST_PROGS include ../../lib.mk
Commit b3ea416419c8 ("testing: net-drv: add basic shaper test") removed the trailing backslash from the last entry. We have a terminating comment here to avoid having to modify the last line when adding at the end. Signed-off-by: Jakub Kicinski <kuba@kernel.org> --- tools/testing/selftests/drivers/net/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)