net: Move selftests to common net/ subdirectory.

Suggested-by: Daniel Baluta <daniel.baluta@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
David S. Miller
2013-03-20 15:07:56 -04:00
parent 4c1d8d0617
commit a6f68034de
7 changed files with 6 additions and 22 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
echo "--------------------"
echo "running socket test"
echo "--------------------"
./socket
if [ $? -ne 0 ]; then
echo "[FAIL]"
else
echo "[PASS]"
fi