X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Frunner.cc;h=5f1acf56aacce795bdb42d27542541a907c002ad;hb=5db8b42084fb912877472b599e40ece700a7d003;hp=808fb13cb30b9620e421c9c46fee5ad14a1a816a;hpb=28602fd2f5f1c758b50cd82d4545da8e6c55f5c7;p=m6w6%2Flibmemcached diff --git a/libtest/runner.cc b/libtest/runner.cc index 808fb13c..5f1acf56 100644 --- a/libtest/runner.cc +++ b/libtest/runner.cc @@ -1,8 +1,8 @@ /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab: - * - * uTest, libtest * - * Copyright (C) 2011 Data Differential, http://datadifferential.com/ + * Data Differential YATL (i.e. libtest) library + * + * Copyright (C) 2012 Data Differential, http://datadifferential.com/ * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are @@ -34,14 +34,21 @@ * */ +#include "mem_config.h" #include namespace libtest { -Runner::Runner() +Runner::Runner() : + _servers(NULL) { } +test_return_t Runner::flush(void*) +{ + return TEST_SUCCESS; +} + test_return_t Runner::run(test_callback_fn* func, void *object) { if (func)