Commit 462ef975 authored by Jakub Kicinski's avatar Jakub Kicinski Committed by David S. Miller

selftests: devlink: undo changes at the end of resource_test

The netdevsim object is reused by all the tests, but the resource
tests puts it into a broken state (failed reload in a different
namespace). Make sure it's fixed up at the end of that test
otherwise subsequent tests fail.

Fixes: b74c37fd ("selftests: netdevsim: add tests for devlink reload with resources")
Signed-off-by: default avatarJakub Kicinski <jakub.kicinski@netronome.com>
Acked-by: default avatarJiri Pirko <jiri@mellanox.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent a9b97286
......@@ -279,6 +279,12 @@ resource_test()
devlink -N testns1 dev reload $DL_HANDLE netns testns2
check_fail $? "Unexpected successful reload from netns \"testns1\" into netns \"testns2\""
devlink -N testns2 resource set $DL_HANDLE path IPv4/fib size ' -1'
check_err $? "Failed to reset IPv4/fib resource size"
devlink -N testns2 dev reload $DL_HANDLE netns 1
check_err $? "Failed to reload devlink back"
ip netns del testns2
ip netns del testns1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment