diff options
author | Petr Machata <petrm@mellanox.com> | 2019-03-28 12:12:23 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-03-28 17:20:52 -0700 |
commit | 2cca8751af36d5f84eaa05d63632afa25a523b69 (patch) | |
tree | 66548fb9c419e0d020146b1c018e42ae9d444b15 /tools/testing/selftests/net | |
parent | 2fcbc0b15e39019e84863a69c822b3c3103cfd56 (diff) |
selftests: forwarding: devlink_lib: Avoid double sourcing of lib.sh
Don't source lib.sh twice and make the script work with ifnames passed
on the command line.
Signed-off-by: Petr Machata <petrm@mellanox.com>
Signed-off-by: Ido Schimmel <idosch@mellanox.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'tools/testing/selftests/net')
-rw-r--r-- | tools/testing/selftests/net/forwarding/devlink_lib.sh | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/tools/testing/selftests/net/forwarding/devlink_lib.sh b/tools/testing/selftests/net/forwarding/devlink_lib.sh index 57cf8914910d..981b897d418d 100644 --- a/tools/testing/selftests/net/forwarding/devlink_lib.sh +++ b/tools/testing/selftests/net/forwarding/devlink_lib.sh @@ -2,16 +2,6 @@ # SPDX-License-Identifier: GPL-2.0 ############################################################################## -# Source library - -relative_path="${BASH_SOURCE%/*}" -if [[ "$relative_path" == "${BASH_SOURCE}" ]]; then - relative_path="." -fi - -source "$relative_path/lib.sh" - -############################################################################## # Defines DEVLINK_DEV=$(devlink port show | grep "${NETIFS[p1]}" | \ |