Files
linux-stable-mirror/tools/testing/selftests/net/run_netsocktests
T
2013-03-20 15:07:56 -04:00

13 lines
166 B
Bash

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