2023-03-13 07:59:01 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
2023-07-05 06:08:58 +00:00
|
|
|
SCRIPT_DIR=/regression
|
2023-03-22 03:52:24 +00:00
|
|
|
cd ${SCRIPT_DIR}/..
|
|
|
|
|
|
2023-03-13 07:59:01 +00:00
|
|
|
echo "Running tests......"
|
2023-08-28 06:28:23 +00:00
|
|
|
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"
|
2023-03-13 07:59:01 +00:00
|
|
|
for testcase in ${tests}
|
|
|
|
|
do
|
|
|
|
|
echo "Running test ${testcase}......"
|
2023-07-05 06:08:58 +00:00
|
|
|
${SCRIPT_DIR}/${testcase}
|
2023-03-13 07:59:01 +00:00
|
|
|
done
|
|
|
|
|
echo "All tests passed"
|