mdbx-test: add ttl testcase.

Change-Id: Ia5d164fde250e959226a53c63fcaf024ffe965a2
This commit is contained in:
Leonid Yuriev
2019-06-21 22:42:45 +03:00
parent eecec74e21
commit 9cf9d6eac2
11 changed files with 192 additions and 21 deletions

View File

@@ -35,6 +35,8 @@ const char *testcase2str(const actor_testcase testcase) {
return "copy";
case ac_append:
return "append";
case ac_ttl:
return "ttl";
}
}
@@ -488,6 +490,9 @@ bool test_execute(const actor_config &config) {
case ac_append:
test.reset(new testcase_append(config, pid));
break;
case ac_ttl:
test.reset(new testcase_ttl(config, pid));
break;
default:
test.reset(new testcase(config, pid));
break;