X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=tests%2Fmemdump.cc;h=a43a61240a0be4915d4de52219402415c24255f0;hb=b30da3e793829246675966830c668c3f60496e07;hp=f044844d07339477767b70d1609063d16bf3c412;hpb=6b04196d0ea6aa9fcd2a6c14a6cb5733c34aa2d2;p=awesomized%2Flibmemcached diff --git a/tests/memdump.cc b/tests/memdump.cc index f044844d..a43a6124 100644 --- a/tests/memdump.cc +++ b/tests/memdump.cc @@ -39,7 +39,7 @@ Test that we are cycling the servers we are creating during testing. */ -#include +#include #include #include @@ -67,7 +67,7 @@ static test_return_t server_test(void *) snprintf(buffer, sizeof(buffer), "--servers=localhost:%d", int(default_port())); const char *args[]= { buffer, 0 }; - test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true)); + test_true(exec_cmdline(executable, args, true) <= EXIT_FAILURE); return TEST_SUCCESS; } @@ -91,7 +91,7 @@ static test_return_t FOUND_test(void *) test_null(memcached_get(memc, test_literal_param("foo"), 0, 0, &rc)); test_compare(MEMCACHED_SUCCESS, rc); - test_compare(EXIT_SUCCESS, exec_cmdline(executable, args, true)); + test_true(exec_cmdline(executable, args, true) <= EXIT_FAILURE); memcached_free(memc); @@ -118,7 +118,7 @@ static void *world_create(server_startup_st& servers, test_return_t& error) return NULL; } - if (server_startup(servers, "memcached", libtest::default_port(), 0, NULL) == false) + if (server_startup(servers, "memcached", libtest::default_port(), NULL) == false) { error= TEST_FAILURE; return NULL;