netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv3 net] selftests: fib_tests: mute cleanup error message
@ 2023-05-18  4:37 Po-Hsu Lin
  2023-05-18  9:35 ` Ido Schimmel
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Po-Hsu Lin @ 2023-05-18  4:37 UTC (permalink / raw)
  To: linux-kernel, linux-kselftest, netdev
  Cc: po-hsu.lin, roxana.nicolescu, shuah, pabeni, kuba, edumazet,
	davem

In the end of the test, there will be an error message induced by the
`ip netns del ns1` command in cleanup()

  Tests passed: 201
  Tests failed:   0
  Cannot remove namespace file "/run/netns/ns1": No such file or directory

This can even be reproduced with just `./fib_tests.sh -h` as we're
calling cleanup() on exit.

Redirect the error message to /dev/null to mute it.

V2: Update commit message and fixes tag.
V3: resubmit due to missing netdev ML in V2

Fixes: b60417a9f2b8 ("selftest: fib_tests: Always cleanup before exit")
Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
---
 tools/testing/selftests/net/fib_tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/net/fib_tests.sh b/tools/testing/selftests/net/fib_tests.sh
index 7da8ec8..35d89df 100755
--- a/tools/testing/selftests/net/fib_tests.sh
+++ b/tools/testing/selftests/net/fib_tests.sh
@@ -68,7 +68,7 @@ setup()
 cleanup()
 {
 	$IP link del dev dummy0 &> /dev/null
-	ip netns del ns1
+	ip netns del ns1 &> /dev/null
 	ip netns del ns2 &> /dev/null
 }
 
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCHv3 net] selftests: fib_tests: mute cleanup error message
  2023-05-18  4:37 [PATCHv3 net] selftests: fib_tests: mute cleanup error message Po-Hsu Lin
@ 2023-05-18  9:35 ` Ido Schimmel
  2023-05-18 17:26 ` Simon Horman
  2023-05-19  8:00 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Ido Schimmel @ 2023-05-18  9:35 UTC (permalink / raw)
  To: Po-Hsu Lin
  Cc: linux-kernel, linux-kselftest, netdev, roxana.nicolescu, shuah,
	pabeni, kuba, edumazet, davem

On Thu, May 18, 2023 at 12:37:59PM +0800, Po-Hsu Lin wrote:
> In the end of the test, there will be an error message induced by the
> `ip netns del ns1` command in cleanup()
> 
>   Tests passed: 201
>   Tests failed:   0
>   Cannot remove namespace file "/run/netns/ns1": No such file or directory
> 
> This can even be reproduced with just `./fib_tests.sh -h` as we're
> calling cleanup() on exit.
> 
> Redirect the error message to /dev/null to mute it.
> 
> V2: Update commit message and fixes tag.
> V3: resubmit due to missing netdev ML in V2
> 
> Fixes: b60417a9f2b8 ("selftest: fib_tests: Always cleanup before exit")
> Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>

Reviewed-by: Ido Schimmel <idosch@nvidia.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCHv3 net] selftests: fib_tests: mute cleanup error message
  2023-05-18  4:37 [PATCHv3 net] selftests: fib_tests: mute cleanup error message Po-Hsu Lin
  2023-05-18  9:35 ` Ido Schimmel
@ 2023-05-18 17:26 ` Simon Horman
  2023-05-19  8:00 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2023-05-18 17:26 UTC (permalink / raw)
  To: Po-Hsu Lin
  Cc: linux-kernel, linux-kselftest, netdev, roxana.nicolescu, shuah,
	pabeni, kuba, edumazet, davem

On Thu, May 18, 2023 at 12:37:59PM +0800, Po-Hsu Lin wrote:
> In the end of the test, there will be an error message induced by the
> `ip netns del ns1` command in cleanup()
> 
>   Tests passed: 201
>   Tests failed:   0
>   Cannot remove namespace file "/run/netns/ns1": No such file or directory
> 
> This can even be reproduced with just `./fib_tests.sh -h` as we're
> calling cleanup() on exit.
> 
> Redirect the error message to /dev/null to mute it.
> 
> V2: Update commit message and fixes tag.
> V3: resubmit due to missing netdev ML in V2
> 
> Fixes: b60417a9f2b8 ("selftest: fib_tests: Always cleanup before exit")
> Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>

Reviewed-by: Simon Horman <simon.horman@corigine.com>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCHv3 net] selftests: fib_tests: mute cleanup error message
  2023-05-18  4:37 [PATCHv3 net] selftests: fib_tests: mute cleanup error message Po-Hsu Lin
  2023-05-18  9:35 ` Ido Schimmel
  2023-05-18 17:26 ` Simon Horman
@ 2023-05-19  8:00 ` patchwork-bot+netdevbpf
  2 siblings, 0 replies; 4+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-05-19  8:00 UTC (permalink / raw)
  To: Po-Hsu Lin
  Cc: linux-kernel, linux-kselftest, netdev, roxana.nicolescu, shuah,
	pabeni, kuba, edumazet, davem

Hello:

This patch was applied to netdev/net.git (main)
by David S. Miller <davem@davemloft.net>:

On Thu, 18 May 2023 12:37:59 +0800 you wrote:
> In the end of the test, there will be an error message induced by the
> `ip netns del ns1` command in cleanup()
> 
>   Tests passed: 201
>   Tests failed:   0
>   Cannot remove namespace file "/run/netns/ns1": No such file or directory
> 
> [...]

Here is the summary with links:
  - [PATCHv3,net] selftests: fib_tests: mute cleanup error message
    https://git.kernel.org/netdev/net/c/d226b1df3619

You are awesome, thank you!
-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-05-19  8:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-18  4:37 [PATCHv3 net] selftests: fib_tests: mute cleanup error message Po-Hsu Lin
2023-05-18  9:35 ` Ido Schimmel
2023-05-18 17:26 ` Simon Horman
2023-05-19  8:00 ` patchwork-bot+netdevbpf

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).