mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-11 14:26:48 +00:00
32 lines
526 B
Bash
Executable File
32 lines
526 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# SPDX-License-Identifier: MPL-2.0
|
|
|
|
set -e
|
|
|
|
SCRIPT_DIR=/regression
|
|
cd ${SCRIPT_DIR}/..
|
|
|
|
echo "Start process test......"
|
|
# These test programs are sorted by name.
|
|
tests="
|
|
clone3/clone_process
|
|
execve/execve
|
|
eventfd2/eventfd2
|
|
fork/fork
|
|
fork_c/fork
|
|
getpid/getpid
|
|
hello_pie/hello
|
|
hello_world/hello_world
|
|
mmap/map_shared_anon
|
|
pthread/pthread_test
|
|
pty/open_pty
|
|
signal_c/signal_test
|
|
"
|
|
|
|
for testcase in ${tests}
|
|
do
|
|
echo "Running test ${testcase}......"
|
|
${SCRIPT_DIR}/${testcase}
|
|
done
|
|
echo "All process test passed." |