xref: /linux/tools/testing/selftests/net/run_netsocktests (revision a6f68034de8a5784dfeabb337506254c80b4c8c6)
1*a6f68034SDavid S. Miller#!/bin/bash
2*a6f68034SDavid S. Miller
3*a6f68034SDavid S. Millerecho "--------------------"
4*a6f68034SDavid S. Millerecho "running socket test"
5*a6f68034SDavid S. Millerecho "--------------------"
6*a6f68034SDavid S. Miller./socket
7*a6f68034SDavid S. Millerif [ $? -ne 0 ]; then
8*a6f68034SDavid S. Miller	echo "[FAIL]"
9*a6f68034SDavid S. Millerelse
10*a6f68034SDavid S. Miller	echo "[PASS]"
11*a6f68034SDavid S. Millerfi
12*a6f68034SDavid S. Miller
13