Skip to content

Commit

Permalink
Update TravisCI to ignore false positive in btcec.
Browse files Browse the repository at this point in the history
Also correct format verb found by go vet.
  • Loading branch information
davecgh committed Feb 6, 2015
1 parent c360543 commit 8134f68
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion btcec/btcec_test.go
Expand Up @@ -560,7 +560,7 @@ func TestBaseMultVerify(t *testing.T) {
data := make([]byte, bytes)
_, err := rand.Read(data)
if err != nil {
t.Errorf("failed to read random data for %s", i)
t.Errorf("failed to read random data for %d", i)
continue
}
x, y := s256.ScalarBaseMult(data)
Expand Down
2 changes: 1 addition & 1 deletion goclean.sh
Expand Up @@ -12,7 +12,7 @@ set -e
# Automatic checks
test -z $(gofmt -l -w . | tee /dev/stderr)
test -z $(goimports -l -w . | tee /dev/stderr)
test -z $(golint ./... | grep -v "ALL_CAPS" | grep -v "OP_" | tee /dev/stderr)
test -z $(golint ./... | grep -v "ALL_CAPS" | grep -v "OP_" | grep -v "NewFieldVal" | tee /dev/stderr)
go tool vet -structtags=false .
env GORACE="halt_on_error=1" go test -v -race ./...

Expand Down

0 comments on commit 8134f68

Please sign in to comment.