mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
13 lines
166 B
Text
13 lines
166 B
Text
![]() |
#!/bin/bash
|
||
|
|
||
|
echo "--------------------"
|
||
|
echo "running socket test"
|
||
|
echo "--------------------"
|
||
|
./socket
|
||
|
if [ $? -ne 0 ]; then
|
||
|
echo "[FAIL]"
|
||
|
else
|
||
|
echo "[PASS]"
|
||
|
fi
|
||
|
|