v2ray-core/testing/coverage/coverall

37 lines
916 B
Plaintext
Raw Normal View History

2015-09-07 19:22:43 +00:00
#!/bin/bash
FAIL=0
function join { local IFS="$1"; shift; echo "$*"; }
function test_package {
DIR="github.com/v2ray/v2ray-core/$1"
DEP=$2
IFS=',' read -ra DEPS <<< "$DEP"
DEPS=("${DEPS[@]/#/github.com/v2ray/v2ray-core/}")
DEP=$(join , "${DEPS[@]}")
go test -coverprofile=coversingle.out -coverpkg=$DEP $DIR || FAIL=1
if [ -f coversingle.out ]; then
cat coversingle.out | grep -v "mode: set" >> coverall.out
rm coversingle.out
2015-09-07 19:22:43 +00:00
fi
}
echo "mode: set" > coverall.out
test_package "." "."
2015-09-19 17:06:41 +00:00
test_package "io/socks" "io/socks"
test_package "io/vmess" "hash,io,io/vmess"
test_package "math" "math"
test_package "net" "net"
2015-09-19 20:06:32 +00:00
test_package "net/socks" ".,io/socks,net,net/socks"
2015-09-19 19:58:52 +00:00
test_package "net/vmess" ".,io,math,net,net/vmess"
2015-09-07 19:22:43 +00:00
if [ "$FAIL" -eq 0 ]; then
2015-09-07 19:24:46 +00:00
$HOME/gopath/bin/goveralls -v -coverprofile=coverall.out -service=travis-ci -repotoken $COVERALLS_TOKEN
2015-09-07 19:22:43 +00:00
fi
rm -f coverall.out
exit $FAIL