projects
/
linux-3.10.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
7907824c63553fcef82f5773e80a20db871e3eeb
[linux-3.10.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