9 lines
146 B
Bash
Executable file
9 lines
146 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -ev
|
|
|
|
for file in $(dirname $0)/*; do
|
|
if [ ! "$file" = $(dirname $0)/run_all ]; then
|
|
. $file
|
|
fi
|
|
done # Running tests after this
|