aboutsummaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/net/netdevice.sh
diff options
context:
space:
mode:
authorDaniel Díaz <daniel.diaz@linaro.org>2017-07-07 10:27:06 -0500
committerShuah Khan <shuahkh@osg.samsung.com>2017-09-18 10:46:48 -0600
commit64cfcaed7b25f69d8b7a091a23961f50c6788a66 (patch)
tree6243f264a0f6e9ac26decc5c6a5d6d9c79240eea /tools/testing/selftests/net/netdevice.sh
parentLinux 4.14-rc1 (diff)
downloadlinux-dev-64cfcaed7b25f69d8b7a091a23961f50c6788a66.tar.xz
linux-dev-64cfcaed7b25f69d8b7a091a23961f50c6788a66.zip
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 '')
-rwxr-xr-xtools/testing/selftests/net/netdevice.sh2
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