mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-23 11:29:53 +07:00
a6f68034de
Suggested-by: Daniel Baluta <daniel.baluta@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
166 B
Bash
13 lines
166 B
Bash
#!/bin/bash
|
|
|
|
echo "--------------------"
|
|
echo "running socket test"
|
|
echo "--------------------"
|
|
./socket
|
|
if [ $? -ne 0 ]; then
|
|
echo "[FAIL]"
|
|
else
|
|
echo "[PASS]"
|
|
fi
|
|
|