mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-08 12:56:48 +00:00
17 lines
195 B
Bash
Executable File
17 lines
195 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=/test
|
|
cd ${SCRIPT_DIR}
|
|
|
|
./shell_cmd.sh
|
|
./fs.sh
|
|
./process.sh
|
|
./network.sh
|
|
./test_epoll_pwait.sh
|
|
|
|
echo "All general tests passed."
|