Clean and simplify some code (#279)

* Clean and simplify some code

Signed-off-by: JmPotato <ghzpotato@gmail.com>

* Remove unused Makefile content

Signed-off-by: JmPotato <ghzpotato@gmail.com>
pull/282/head v1.3.6
JmPotato 2021-05-23 14:29:23 +08:00 committed by GitHub
parent 90fdc8d162
commit 685b13a4ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 5 deletions

View File

@ -2,8 +2,6 @@ BRANCH=`git rev-parse --abbrev-ref HEAD`
COMMIT=`git rev-parse --short HEAD`
GOLDFLAGS="-X main.branch $(BRANCH) -X main.commit $(COMMIT)"
default: build
race:
@TEST_FREELIST_TYPE=hashmap go test -v -race -test.run="TestSimulate_(100op|1000op)"
@echo "array freelist test"

View File

@ -395,7 +395,7 @@ func TestOpen_FileTooSmall(t *testing.T) {
t.Fatal(err)
}
db, err = bolt.Open(path, 0666, nil)
_, err = bolt.Open(path, 0666, nil)
if err == nil || err.Error() != "file size too small" {
t.Fatalf("unexpected error: %s", err)
}

View File

@ -45,8 +45,7 @@ func TestTx_Check_ReadOnly(t *testing.T) {
numChecks := 2
errc := make(chan error, numChecks)
check := func() {
err, _ := <-tx.Check()
errc <- err
errc <- <-tx.Check()
}
// Ensure the freelist is not reloaded and does not race.
for i := 0; i < numChecks; i++ {