Merge pull request #315 from missinglink/enable-main-test

cmd/bbolt: re-enable "bbolt" testing
pull/328/head
Benjamin Wang 2022-11-30 18:40:10 +08:00 committed by GitHub
commit 020684ea1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -15,13 +15,11 @@ lint:
test:
TEST_FREELIST_TYPE=hashmap go test -timeout 20m -v -coverprofile cover.out -covermode atomic
# Note: gets "program not an importable package" in out of path builds
TEST_FREELIST_TYPE=hashmap go test -v ./cmd/bbolt
@echo "array freelist test"
@TEST_FREELIST_TYPE=array go test -timeout 20m -v -coverprofile cover.out -covermode atomic
# Note: gets "program not an importable package" in out of path builds
@TEST_FREELIST_TYPE=array go test -v ./cmd/bbolt
.PHONY: race fmt test lint

View File

@ -12,6 +12,7 @@ import (
"testing"
bolt "go.etcd.io/bbolt"
main "go.etcd.io/bbolt/cmd/bbolt"
)
// Ensure the "info" command can print information about a database.