diff options
author | Daniel Díaz | 2017-07-07 10:27:06 -0500 |
---|---|---|
committer | Shuah Khan | 2017-09-18 10:46:48 -0600 |
commit | 64cfcaed7b25f69d8b7a091a23961f50c6788a66 (patch) | |
tree | 6243f264a0f6e9ac26decc5c6a5d6d9c79240eea /tools | |
parent | 2bd6bf03f4c1c59381d62c61d03f6cc3fe71f66e (diff) |
selftests: net: More graceful finding of `ip'.
The ip tool might be provided by another package (such as
Busybox), not necessarily implementing the -Version switch.
Trying an actual usage (`ip link show') might be a better
test that would work with all implementations of `ip'.
Signed-off-by: Daniel Díaz <daniel.diaz@linaro.org>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/testing/selftests/net/netdevice.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/testing/selftests/net/netdevice.sh b/tools/testing/selftests/net/netdevice.sh index 4e00568d70c2..90cb903c3381 100755 --- a/tools/testing/selftests/net/netdevice.sh +++ b/tools/testing/selftests/net/netdevice.sh @@ -178,7 +178,7 @@ if [ "$(id -u)" -ne 0 ];then exit 0 fi -ip -Version 2>/dev/null >/dev/null +ip link show 2>/dev/null >/dev/null if [ $? -ne 0 ];then echo "SKIP: Could not run test without the ip tool" exit 0 |