diff options
author | George Hazan <ghazan@miranda.im> | 2018-11-06 13:07:56 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-11-06 13:07:56 +0300 |
commit | ee25ba7f21361902fa8fde104a29d92b39c8db9c (patch) | |
tree | 511557132a91a2ad9fe0c8e18ea4114ebf956bec /libs/libmdbx/src/test/hill.cc | |
parent | d8d3c2cfc50e05fe4b8f6ddd69f2b27b0890ebb8 (diff) |
merge with libmdbx trunk - fixes one rare problem with database shrinking
Diffstat (limited to 'libs/libmdbx/src/test/hill.cc')
-rw-r--r-- | libs/libmdbx/src/test/hill.cc | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/libs/libmdbx/src/test/hill.cc b/libs/libmdbx/src/test/hill.cc index 10cb308942..856aeb9356 100644 --- a/libs/libmdbx/src/test/hill.cc +++ b/libs/libmdbx/src/test/hill.cc @@ -1,4 +1,4 @@ -/* +/* * Copyright 2017-2018 Leonid Yuriev <leo@yuriev.ru> * and other libmdbx authors: please see AUTHORS file. * All rights reserved. @@ -14,17 +14,6 @@ #include "test.h" -bool testcase_hill::setup() { - log_trace(">> setup"); - if (!inherited::setup()) - return false; - - /* TODO */ - - log_trace("<< setup"); - return true; -} - bool testcase_hill::run() { db_open(); @@ -225,8 +214,3 @@ bool testcase_hill::run() { } return true; } - -bool testcase_hill::teardown() { - log_trace(">> teardown"); - return inherited::teardown(); -} |