asterinas/src/apps/scripts/run_tests.sh

13 lines
272 B
Bash
Raw Normal View History

2023-03-13 07:59:01 +00:00
#!/bin/sh
set -e
echo "Running tests......"
tests="hello_world/hello_world fork/fork execve/execve fork_c/fork signal_c/signal_test pthread/pthread_test"
for testcase in ${tests}
do
echo "Running test ${testcase}......"
${testcase}
done
echo "All tests passed"