xref: /openbmc/linux/tools/testing/selftests/net/run_netsocktests (revision 63c43812ee99efe7903955bae8cd928e9582477a)
1#!/bin/bash
2
3echo "--------------------"
4echo "running socket test"
5echo "--------------------"
6./socket
7if [ $? -ne 0 ]; then
8	echo "[FAIL]"
9else
10	echo "[PASS]"
11fi
12
13