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