aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorJakob Borg <jakob@nym.se>2015-10-14 15:41:15 +0900
committerJakob Borg <jakob@nym.se>2015-10-14 15:41:15 +0900
commit76359da58e3c3051ddcc4e4dcfcb0a87d0317bb1 (patch)
tree1e02570e37c5867d10821e64441b64393cf940c9 /build.sh
parent368cd445588305cfdbb3473c467ee8f3bcce2fbf (diff)
downloadsyncthing-76359da58e3c3051ddcc4e4dcfcb0a87d0317bb1.tar.gz
syncthing-76359da58e3c3051ddcc4e4dcfcb0a87d0317bb1.zip
Apparently -race adds some stuff gocov doesn't like. Lets try this instead.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index f7bdf9682..1bd946eec 100755
--- a/build.sh
+++ b/build.sh
@@ -111,7 +111,7 @@ case "${1:-default}" in
godep go test -race -coverprofile=profile.out $dir
if [ -f profile.out ] ; then
# and if there was test output, append it to coverage.out
- grep -v "mode: set" profile.out >> coverage.out
+ grep -v "mode: " profile.out >> coverage.out
rm profile.out
fi
done