Running regression test in ci

This commit is contained in:
Jianfeng Jiang
2023-11-02 17:37:21 +08:00
committed by Tate, Hongliang Tian
parent af81741f23
commit d24775001f
7 changed files with 40 additions and 12 deletions

View File

@ -0,0 +1,15 @@
#!/bin/sh
set -e
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"
for testcase in ${tests}
do
echo "Running test ${testcase}......"
${SCRIPT_DIR}/${testcase}
done
echo "All process test passed."