imip-agent

test_all.sh

1220:167e972361d9
2017-04-02 Paul Boddie Added database output redirection for versions of psql that do not fully support output suppression.
     1 #!/bin/sh     2      3 PROGNAME=`basename $0`     4      5 if [ "$1" = '--help' ]; then     6     cat 1>&2 <<EOF     7 Usage: $PROGNAME     8      9 Indicate the STORE_TYPE environment variable to test different kinds of data    10 stores. See tools/config.sh for information about different data stores.    11 EOF    12     exit 1    13 fi    14     15 for FILENAME in tests/test_*.sh ; do    16     echo "$FILENAME"    17     "$FILENAME"    18 done