mirror of
https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
synced 2025-10-29 07:18:51 +01:00
12 lines
166 B
Bash
12 lines
166 B
Bash
#!/bin/bash
|
|
|
|
echo "--------------------"
|
|
echo "running socket test"
|
|
echo "--------------------"
|
|
./socket
|
|
if [ $? -ne 0 ]; then
|
|
echo "[FAIL]"
|
|
else
|
|
echo "[PASS]"
|
|
fi
|
|
|