]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - tools/testing/selftests/net/run_afpackettests
Merge tag 'configfs-for-linus-2' of git://git.infradead.org/users/hch/configfs
[mirror_ubuntu-bionic-kernel.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
17
18 echo "--------------------"
19 echo "running psock_tpacket test"
20 echo "--------------------"
21 ./psock_tpacket
22 if [ $? -ne 0 ]; then
23 echo "[FAIL]"
24 else
25 echo "[PASS]"
26 fi