Files

13 lines
171 B
Bash
Raw Permalink Normal View History

2023-05-02 09:58:35 +02:00
#!/bin/sh
echo "--------------------"
echo "running socket test"
echo "--------------------"
./socket
if [ $? -ne 0 ]; then
echo "[FAIL]"
exit 1
else
echo "[PASS]"
fi