mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 15:15:59 +07:00
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
echo "--------------------"
|
||
|
echo "running socket test"
|
||
|
echo "--------------------"
|
||
|
./socket
|
||
|
if [ $? -ne 0 ]; then
|
||
|
echo "[FAIL]"
|
||
|
else
|
||
|
echo "[PASS]"
|
||
|
fi
|
||
|
|