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