imip-agent

Annotated test_all.sh

1274:8ccb4ffec367
2017-09-19 Paul Boddie Moved general period selection functions into the imiptools.data module. client-editing-simplification
paul@629 1
#!/bin/sh
paul@629 2
paul@1219 3
PROGNAME=`basename $0`
paul@1219 4
paul@1219 5
if [ "$1" = '--help' ]; then
paul@1219 6
    cat 1>&2 <<EOF
paul@1219 7
Usage: $PROGNAME
paul@1219 8
paul@1219 9
Indicate the STORE_TYPE environment variable to test different kinds of data
paul@1219 10
stores. See tools/config.sh for information about different data stores.
paul@1219 11
EOF
paul@1219 12
    exit 1
paul@1219 13
fi
paul@1219 14
paul@1092 15
for FILENAME in tests/test_*.sh ; do
paul@1092 16
    echo "$FILENAME"
paul@1092 17
    "$FILENAME"
paul@1092 18
done