brintos

brintos / linux-shallow public Read only

0
0
Text · 206 B · 14e41fa Raw
14 lines · plain
1#!/bin/sh2# SPDX-License-Identifier: GPL-2.03 4echo "--------------------"5echo "running socket test"6echo "--------------------"7./socket8if [ $? -ne 0 ]; then9	echo "[FAIL]"10	exit 111else12	echo "[PASS]"13fi14