Add syscall clone3

This commit is contained in:
Jianfeng Jiang
2023-12-14 02:33:23 +00:00
committed by Tate, Hongliang Tian
parent a5707b4ddc
commit 07fbbcfd8c
11 changed files with 220 additions and 39 deletions

View File

@ -8,7 +8,22 @@ SCRIPT_DIR=/regression
cd ${SCRIPT_DIR}/..
echo "Start process test......"
tests="hello_world/hello_world fork/fork execve/execve fork_c/fork signal_c/signal_test pthread/pthread_test hello_pie/hello pty/open_pty getpid/getpid eventfd2/eventfd2 mmap/map_shared_anon"
# 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}......"