forked from mirror/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
243 B
9 lines
243 B
10 years ago
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
10 years ago
|
TEST_DEPS=$(go list -f '{{.Imports}} {{.TestImports}} {{.XTestImports}}' github.com/ethereum/go-ethereum/... | sed -e 's/\[//g' | sed -e 's/\]//g' | sed -e 's/C //g')
|
||
10 years ago
|
if [ "$TEST_DEPS" ]; then
|
||
|
go get -race $TEST_DEPS
|
||
|
fi
|