mirror of https://github.com/etcd-io/bbolt.git
Merge pull request #315 from missinglink/enable-main-test
cmd/bbolt: re-enable "bbolt" testingpull/328/head
commit
020684ea1e
2
Makefile
2
Makefile
|
@ -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
|
||||
|
|
|
@ -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.
|
Loading…
Reference in New Issue