lineage_kernel_xcoverpro/tools/testing/selftests/net/run_netsocktests

14 lines
199 B
Plaintext
Raw Normal View History

2023-06-18 22:53:49 +00:00
#!/bin/sh
# SPDX-License-Identifier: GPL-2.0
echo "--------------------"
echo "running socket test"
echo "--------------------"
./socket
if [ $? -ne 0 ]; then
echo "[FAIL]"
else
echo "[PASS]"
fi