Skip to content
This repository has been archived by the owner on Mar 9, 2019. It is now read-only.

Commit

Permalink
Merge branch 'master' of https://github.com/boltdb/bolt
Browse files Browse the repository at this point in the history
  • Loading branch information
benbjohnson committed Apr 8, 2014
2 parents feb84e3 + fef1aad commit ac2d4f0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,15 @@ errcheck:
fmt:
@go fmt ./...

get:
@go get -d ./...

build: get
@mkdir -p bin
@go build -a -o bin/bolt-`git rev-parse --short HEAD` ./cmd/bolt

test: fmt errcheck
@go get github.com/stretchr/testify/assert
@echo "=== TESTS ==="
@go test -v -cover -test.run=$(TEST)
@echo ""
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Since Bolt is meant to be used as such a low-level piece of functionality, simpl

## Project Status

Bolt is functionally complete and has nearly full unit test coverage. The library test suite also includes randomized black box testing to ensure database consistency and thread safety. Bolt is currently in use in a few project, however, it is still at a beta stage so please use with caution and report any bugs found.
Bolt is functionally complete and has nearly full unit test coverage. The library test suite also includes randomized black box testing to ensure database consistency and thread safety. Bolt is currently in use in a few projects, however, it is still at a beta stage so please use with caution and report any bugs found.


## Comparing Bolt vs LMDB
Expand Down

0 comments on commit ac2d4f0

Please sign in to comment.