edc65b5c19
Third part of reorganizing and cleaning up test-folders.
16 lines
289 B
Bash
Executable File
16 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
cd "$( dirname "$( readlink -f "$0" )" )"
|
|
|
|
for i in */test.sh ; do
|
|
(
|
|
echo "----------------------------------------"
|
|
echo "-- Running integration test: $i"
|
|
echo "----------------------------------------"
|
|
cd "$( dirname "$i" )"
|
|
./test.sh
|
|
)
|
|
done
|