X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Frunner.h;h=ea42c26037cb4c283537cfa08bd2aa5331371cb7;hb=1ad78a588c2899f9f42d5e51352e57ef6cdbdf8e;hp=8eb5480a4cc31b2ff5ab3f486090b3301c41c0cd;hpb=28602fd2f5f1c758b50cd82d4545da8e6c55f5c7;p=m6w6%2Flibmemcached diff --git a/libtest/runner.h b/libtest/runner.h index 8eb5480a..ea42c260 100644 --- a/libtest/runner.h +++ b/libtest/runner.h @@ -1,9 +1,25 @@ -/* uTest Copyright (C) 2011 Data Differential, http://datadifferential.com/ +/* vim:expandtab:shiftwidth=2:tabstop=2:smarttab: + * + * libtest * - * Use and distribution licensed under the BSD license. See - * the COPYING file in the parent directory for full text. + * Copyright (C) 2011 Data Differential, http://datadifferential.com/ + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU Lesser General Public + * License as published by the Free Software Foundation; either + * version 3 of the License, or (at your option) any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * Lesser General Public License for more details. + * + * You should have received a copy of the GNU Lesser General Public + * License along with this library; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ + #pragma once @@ -21,7 +37,20 @@ public: Runner(); + void set_servers(libtest::server_startup_st& arg) + { + _servers= &arg; + } + + bool check() + { + return _servers ? _servers->check() : true; + } + virtual ~Runner() { } + +private: + libtest::server_startup_st* _servers; }; } // namespace Runner