2019-09-09 18:40:24 +08:00
|
|
|
#include "test.h"
|
2017-10-26 08:56:12 +08:00
|
|
|
|
2021-03-16 01:52:18 +08:00
|
|
|
class testcase_try : public testcase {
|
|
|
|
public:
|
|
|
|
testcase_try(const actor_config &config, const mdbx_pid_t pid)
|
|
|
|
: testcase(config, pid) {}
|
|
|
|
bool run() override;
|
|
|
|
};
|
|
|
|
REGISTER_TESTCASE(try);
|
|
|
|
|
2017-10-26 08:56:12 +08:00
|
|
|
bool testcase_try::run() {
|
|
|
|
db_open();
|
|
|
|
assert(!txn_guard);
|
|
|
|
|
|
|
|
MDBX_txn *txn = nullptr;
|
|
|
|
MDBX_txn *txn2 = nullptr;
|
2020-08-04 06:06:01 +08:00
|
|
|
int rc = mdbx_txn_begin(db_guard.get(), nullptr, MDBX_TXN_READWRITE, &txn);
|
2017-10-26 08:56:12 +08:00
|
|
|
if (unlikely(rc != MDBX_SUCCESS))
|
2020-08-03 01:52:36 +08:00
|
|
|
failure_perror("mdbx_txn_begin(MDBX_TXN_TRY)", rc);
|
2017-10-26 08:56:12 +08:00
|
|
|
else {
|
2020-08-03 01:52:36 +08:00
|
|
|
rc = mdbx_txn_begin(db_guard.get(), nullptr, MDBX_TXN_TRY, &txn2);
|
2017-10-26 08:56:12 +08:00
|
|
|
if (unlikely(rc != MDBX_BUSY))
|
2020-08-03 01:52:36 +08:00
|
|
|
failure_perror("mdbx_txn_begin(MDBX_TXN_TRY)", rc);
|
2017-10-26 08:56:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
txn_guard.reset(txn);
|
|
|
|
return true;
|
|
|
|
}
|