Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.4-rc3 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