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