mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-26 02:43:24 +00:00
Rename regression to test
This commit is contained in:
committed by
Tate, Hongliang Tian
parent
5eefd600cc
commit
f675552c5a
27
test/apps/scripts/network.sh
Executable file
27
test/apps/scripts/network.sh
Executable 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"
|
Reference in New Issue
Block a user