You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# Ensure test args are set.
|
|
ARGS=${@}; [ -z "$ARGS" ] && \
|
|
ARGS='./...'
|
|
|
|
# Run the SQLite tests.
|
|
GTS_DB_TYPE=sqlite \
|
|
GTS_DB_ADDRESS=':memory:' \
|
|
go test ${ARGS} |