X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftest%2Flibrados%2Ftest.h;fp=src%2Fceph%2Fsrc%2Ftest%2Flibrados%2Ftest.h;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=8b505957fd08cfff5821069c3057038a58a4912f;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/test/librados/test.h b/src/ceph/src/test/librados/test.h deleted file mode 100644 index 8b50595..0000000 --- a/src/ceph/src/test/librados/test.h +++ /dev/null @@ -1,60 +0,0 @@ -// -*- mode:C++; tab-width:8; c-basic-offset:2; indent-tabs-mode:t -*- -// vim: ts=8 sw=2 smarttab -/* - * Ceph - scalable distributed file system - * - * Copyright (C) 2011 New Dream Network - * - * This is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License version 2.1, as published by the Free Software - * Foundation. See file COPYING. - * - */ - -#ifndef CEPH_TEST_RADOS_API_TEST_H -#define CEPH_TEST_RADOS_API_TEST_H - -#include "include/rados/librados.h" -#include "include/rados/librados.hpp" - -#include -#include -#include - -std::string get_temp_pool_name(const std::string &prefix = "test-rados-api-"); - -std::string create_one_pool(const std::string &pool_name, rados_t *cluster, - uint32_t pg_num=0); -std::string create_one_ec_pool(const std::string &pool_name, rados_t *cluster); -std::string create_one_pool_pp(const std::string &pool_name, - librados::Rados &cluster); -std::string create_one_pool_pp(const std::string &pool_name, - librados::Rados &cluster, - const std::map &config); -std::string create_one_ec_pool_pp(const std::string &pool_name, - librados::Rados &cluster); -std::string connect_cluster(rados_t *cluster); -std::string connect_cluster_pp(librados::Rados &cluster); -std::string connect_cluster_pp(librados::Rados &cluster, - const std::map &config); -int destroy_one_pool(const std::string &pool_name, rados_t *cluster); -int destroy_one_ec_pool(const std::string &pool_name, rados_t *cluster); -int destroy_one_pool_pp(const std::string &pool_name, librados::Rados &cluster); -int destroy_one_ec_pool_pp(const std::string &pool_name, librados::Rados &cluster); -void assert_eq_sparse(bufferlist& expected, - const std::map& extents, - bufferlist& actual); - -class TestAlarm -{ -public: - TestAlarm() { - alarm(1200); - } - ~TestAlarm() { - alarm(0); - } -}; - -#endif