13 lines
272 B
Bash
13 lines
272 B
Bash
|
|
#!/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"
|