mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-09 13:26:48 +00:00
16 lines
184 B
Bash
Executable File
16 lines
184 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=/regression
|
|
cd ${SCRIPT_DIR}
|
|
|
|
./shell_cmd.sh
|
|
./ext2.sh
|
|
./process.sh
|
|
./network.sh
|
|
|
|
echo "All regression tests passed."
|