13 lines
310 B
Bash
Executable File
13 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$( dirname "$( readlink -f "$0" )" )" || exit 1
|
|
|
|
for i in */test.sh ; do
|
|
(
|
|
echo "----------------------------------------"
|
|
echo "-- Running integration test: $i"
|
|
echo "----------------------------------------"
|
|
cd "$( dirname "$i" )" || exit 1
|
|
./test.sh || exit 1
|
|
)
|
|
done |