aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-06-19 04:38:17 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-06-19 04:38:17 +0800
commit8d3faf69d00420b80d4d737e618b2c7791c10ae9 (patch)
tree4d679f2abf30bd948c46719dd7220a91294f8a27 /build
parentbaea8e87e5dfdcfb7b2fdcef48fa6038d60a6f9c (diff)
downloaddexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar
dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.gz
dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.bz2
dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.lz
dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.xz
dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.tar.zst
dexon-8d3faf69d00420b80d4d737e618b2c7791c10ae9.zip
Build error fixes
Diffstat (limited to 'build')
-rwxr-xr-xbuild/test-global-coverage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/test-global-coverage.sh b/build/test-global-coverage.sh
index 417c829f4..5bb233a31 100755
--- a/build/test-global-coverage.sh
+++ b/build/test-global-coverage.sh
@@ -16,7 +16,7 @@ for pkg in $(go list ./...); do
# drop the namespace prefix.
dir=${pkg##github.com/ethereum/go-ethereum/}
- if [[ $dir != "tests/vm" ]]; then
+ if [[ $dir != "tests" ]]; then
go test -covermode=count -coverprofile=$dir/profile.tmp $pkg
fi
if [[ -f $dir/profile.tmp ]]; then