Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at for-next 13 lines 206 B view raw
1#!/bin/sh 2# SPDX-License-Identifier: GPL-2.0 3 4echo "--------------------" 5echo "running socket test" 6echo "--------------------" 7./socket 8if [ $? -ne 0 ]; then 9 echo "[FAIL]" 10 exit 1 11else 12 echo "[PASS]" 13fi