asterinas/test/apps/scripts/run_general_test.sh

21 lines
346 B
Bash
Raw Normal View History

2023-11-02 09:37:21 +00:00
#!/bin/sh
2024-01-03 03:22:36 +00:00
# SPDX-License-Identifier: MPL-2.0
2023-11-02 09:37:21 +00:00
set -e
2024-06-28 11:12:24 +00:00
SCRIPT_DIR=/test
2023-11-02 09:37:21 +00:00
cd ${SCRIPT_DIR}
./shell_cmd.sh
2024-05-16 11:05:32 +00:00
./test_epoll_pwait.sh
# TODO: Support the following tests with SMP
if [ -z $BLOCK_UNSUPPORTED_SMP_TESTS ]; then
./fs.sh # will hang
./process.sh # will randomly hang
./network.sh # will hang
fi
2024-06-28 11:12:24 +00:00
echo "All general tests passed."