mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-15 16:26:48 +00:00
12 lines
173 B
Bash
Executable File
12 lines
173 B
Bash
Executable File
#!/bin/sh
|
|
|
|
NETTEST_DIR=/regression/network
|
|
cd ${NETTEST_DIR}
|
|
echo "Start net test......"
|
|
./tcp_server &
|
|
./tcp_client
|
|
./udp_server &
|
|
./udp_client
|
|
|
|
echo "All net test passed"
|