summaryrefslogtreecommitdiffstats
path: root/scripts/test-xprog.sh
blob: 899c95543c3a0adb18133bb2bf45fa36bd996c22 (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env bash
set -e
[[ $1 =~ (github.com.*)/_test ]] && \
    echo Testing ${BASH_REMATCH[1]}
coverprofile=`pwd`/cprofile.out
if [[ $1 == *"/enterprise/"* ]]; then
    cd "$(dirname "$(dirname "${BASH_SOURCE[0]}")")"
fi
"$@" -test.coverprofile "$coverprofile"