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
|
2024-04-09 04:34:01 +00:00
|
|
|
|
2024-08-26 10:04:55 +00:00
|
|
|
# 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."
|