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