From 4d442e03d5c41f6c6abaf4577dc8de51901c7187 Mon Sep 17 00:00:00 2001 From: Steven Normore Date: Tue, 8 Apr 2014 07:55:44 -0400 Subject: [PATCH 1/2] fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a249cb2..cd5ec6e 100644 --- a/README.md +++ b/README.md @@ -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 From 0781aa9637356175a4249f1e62a14daa21c9666a Mon Sep 17 00:00:00 2001 From: Steven Normore Date: Tue, 8 Apr 2014 12:34:26 +0000 Subject: [PATCH 2/2] add get/build targets to Makefile --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 2d0fd3f..ec11e77 100644 --- a/Makefile +++ b/Makefile @@ -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 ""