Rename regression to test

This commit is contained in:
Fabing Li
2024-06-28 19:12:24 +08:00
committed by Tate, Hongliang Tian
parent 5eefd600cc
commit f675552c5a
147 changed files with 196 additions and 108 deletions

27
test/apps/scripts/network.sh Executable file
View File

@ -0,0 +1,27 @@
#!/bin/sh
# SPDX-License-Identifier: MPL-2.0
set -e
NETTEST_DIR=/test/network
cd ${NETTEST_DIR}
echo "Start network test......"
./tcp_server &
./tcp_client
./udp_server &
./udp_client
./unix_server &
./unix_client
./socketpair
./sockoption
./listen_backlog
./send_buf_full
./http_server &
./http_client
./tcp_err
./udp_err
echo "All network test passed"