X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fatomsmasher.cc;h=af692c6b43a67ffa387f7f298db25b0d825616db;hb=12a07e58df95bb8dbe167e4157b29c910177ade8;hp=ffde3877e7e8ccb0c3d4cd61f3d3444f7f6163d7;hpb=9fd31c03436acf24c593dc3a77c905eb137ef570;p=awesomized%2Flibmemcached diff --git a/tests/atomsmasher.cc b/tests/atomsmasher.cc index ffde3877..af692c6b 100644 --- a/tests/atomsmasher.cc +++ b/tests/atomsmasher.cc @@ -12,7 +12,7 @@ /* Sample test application. */ -#include "config.h" +#include #include #include @@ -30,7 +30,6 @@ #include #include -#include /* Number of items generated for tests */ #define GLOBAL_COUNT 100000 @@ -276,18 +275,18 @@ collection_st collection[] ={ #include "libmemcached_world.h" -void get_world(world_st *world) +void get_world(Framework *world) { world->collections= collection; - world->create= (test_callback_create_fn*)world_create; - world->destroy= (test_callback_fn*)world_destroy; + world->_create= (test_callback_create_fn*)world_create; + world->_destroy= (test_callback_fn*)world_destroy; - world->run_startup= (test_callback_fn*)world_test_startup; - world->flush= (test_callback_fn*)world_flush; - world->pre_run= (test_callback_fn*)world_pre_run; - world->post_run= (test_callback_fn*)world_post_run; - world->on_error= (test_callback_error_fn*)world_on_error; + world->item._startup= (test_callback_fn*)world_test_startup; + world->item._flush= (test_callback_fn*)world_flush; + world->item.set_pre((test_callback_fn*)world_pre_run); + world->item.set_post((test_callback_fn*)world_post_run); + world->_on_error= (test_callback_error_fn*)world_on_error; world->collection_startup= (test_callback_fn*)world_container_startup; world->collection_shutdown= (test_callback_fn*)world_container_shutdown;