mirror of
https://github.com/grafana/grafana.git
synced 2024-11-24 09:50:29 -06:00
17 lines
382 B
Bash
Executable File
17 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
function exit_if_fail {
|
|
command=$@
|
|
echo "Executing '$command'"
|
|
eval $command
|
|
rc=$?
|
|
if [ $rc -ne 0 ]; then
|
|
echo "'$command' returned $rc."
|
|
exit $rc
|
|
fi
|
|
}
|
|
|
|
echo "running redis and memcache tests"
|
|
|
|
time exit_if_fail go test -tags=redis ./pkg/infra/remotecache/...
|
|
time exit_if_fail go test -tags=memcached ./pkg/infra/remotecache/...
|