diff --git a/ep_testsuite.cc b/ep_testsuite.cc index 6987bd9..49315d3 100644 --- a/ep_testsuite.cc +++ b/ep_testsuite.cc @@ -7570,7 +7570,7 @@ static engine_test_t *testcases; MEMCACHED_PUBLIC_API engine_test_t* get_tests(void) { - TestCase tc[] = { + TestCase tco[] = { TestCase("validate engine handle", test_validate_engine_handle, NULL, teardown, "db_strategy=singleDB;dbname=:memory:", prepare, cleanup, BACKEND_SQLITE), @@ -8209,6 +8209,13 @@ engine_test_t* get_tests(void) { TestCase(NULL, NULL, NULL, NULL, NULL, prepare, cleanup, BACKEND_ALL) }; + (void) tco; + TestCase tc[] = { + TestCase("disk>RAM incr bgfetch race", test_disk_gt_ram_incr_race, + test_setup, teardown, NULL, prepare, cleanup, + BACKEND_ALL), + TestCase(NULL, NULL, NULL, NULL, NULL, prepare, cleanup, BACKEND_ALL) + }; // Calculate the size of the tests.. int num = 0;