]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - tools/testing/selftests/net/run_afpackettests
net: Move selftests to common net/ subdirectory.
[karo-tx-linux.git] / tools / testing / selftests / net / run_afpackettests
1 #!/bin/sh
2
3 if [ $(id -u) != 0 ]; then
4         echo $msg must be run as root >&2
5         exit 0
6 fi
7
8 echo "--------------------"
9 echo "running psock_fanout test"
10 echo "--------------------"
11 ./psock_fanout
12 if [ $? -ne 0 ]; then
13         echo "[FAIL]"
14 else
15         echo "[PASS]"
16 fi