* [PATCH] selftests: fib_tests: mute cleanup error message
@ 2023-05-17 4:11 Po-Hsu Lin
2023-05-17 6:00 ` Ido Schimmel
0 siblings, 1 reply; 3+ messages in thread
From: Po-Hsu Lin @ 2023-05-17 4:11 UTC (permalink / raw)
To: linux-kernel, linux-kselftest, netdev
Cc: po-hsu.lin, dsahern, 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
Redirect the error message to /dev/null to mute it.
Fixes: a0e11da78f48 ("fib_tests: Add tests for metrics on routes")
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] 3+ messages in thread
* Re: [PATCH] selftests: fib_tests: mute cleanup error message
2023-05-17 4:11 [PATCH] selftests: fib_tests: mute cleanup error message Po-Hsu Lin
@ 2023-05-17 6:00 ` Ido Schimmel
2023-05-18 3:22 ` Po-Hsu Lin
0 siblings, 1 reply; 3+ messages in thread
From: Ido Schimmel @ 2023-05-17 6:00 UTC (permalink / raw)
To: Po-Hsu Lin
Cc: linux-kernel, linux-kselftest, netdev, dsahern, shuah, pabeni,
kuba, edumazet, davem
On Wed, May 17, 2023 at 12:11:19PM +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
>
> Redirect the error message to /dev/null to mute it.
>
> Fixes: a0e11da78f48 ("fib_tests: Add tests for metrics on routes")
I don't think this tag is correct. More likely that this is caused by
commit b60417a9f2b8 ("selftest: fib_tests: Always cleanup before exit").
You can even reproduce it with '-h':
# ./fib_tests.sh -h
usage: fib_tests.sh OPTS
[...]
Cannot remove namespace file "/var/run/netns/ns1": No such file or directory
Reverting the commit I mentioned makes it go away.
Also, please use "PATCH net" prefix:
https://www.kernel.org/doc/html/latest/process/maintainer-netdev.html#tl-dr
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] selftests: fib_tests: mute cleanup error message
2023-05-17 6:00 ` Ido Schimmel
@ 2023-05-18 3:22 ` Po-Hsu Lin
0 siblings, 0 replies; 3+ messages in thread
From: Po-Hsu Lin @ 2023-05-18 3:22 UTC (permalink / raw)
To: Ido Schimmel
Cc: linux-kernel, linux-kselftest, netdev, dsahern, shuah, pabeni,
kuba, edumazet, davem
On Wed, May 17, 2023 at 2:00 PM Ido Schimmel <idosch@idosch.org> wrote:
>
> On Wed, May 17, 2023 at 12:11:19PM +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
> >
> > Redirect the error message to /dev/null to mute it.
> >
> > Fixes: a0e11da78f48 ("fib_tests: Add tests for metrics on routes")
>
> I don't think this tag is correct. More likely that this is caused by
> commit b60417a9f2b8 ("selftest: fib_tests: Always cleanup before exit").
>
> You can even reproduce it with '-h':
>
> # ./fib_tests.sh -h
> usage: fib_tests.sh OPTS
> [...]
> Cannot remove namespace file "/var/run/netns/ns1": No such file or directory
>
> Reverting the commit I mentioned makes it go away.
>
> Also, please use "PATCH net" prefix:
> https://www.kernel.org/doc/html/latest/process/maintainer-netdev.html#tl-dr
Thank you!
I will submit V2 for this.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-05-18 3:22 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-17 4:11 [PATCH] selftests: fib_tests: mute cleanup error message Po-Hsu Lin
2023-05-17 6:00 ` Ido Schimmel
2023-05-18 3:22 ` Po-Hsu Lin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox