X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftest%2Funit.cc;fp=src%2Fceph%2Fsrc%2Ftest%2Funit.cc;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=8c901ea95ce8cf91995b1f251a916c72085fccae;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/test/unit.cc b/src/ceph/src/test/unit.cc deleted file mode 100644 index 8c901ea..0000000 --- a/src/ceph/src/test/unit.cc +++ /dev/null @@ -1,54 +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_UNIT_TEST_H -#define CEPH_UNIT_TEST_H - -#include "include/types.h" // FIXME: ordering shouldn't be important, but right - // now, this include has to come before the others. - -#include "common/ceph_argparse.h" -#include "common/code_environment.h" -#include "common/config.h" -#include "global/global_context.h" -#include "global/global_init.h" -#include "include/msgr.h" // for CEPH_ENTITY_TYPE_CLIENT -#include "gtest/gtest.h" - -#include - -/* - * You only need to include this file if you are testing Ceph internal code. If - * you are testing library code, the library init() interfaces will handle - * initialization for you. - */ -int main(int argc, char **argv) { - std::vector args(argv, argv + argc); - env_to_vec(args); - auto cct = global_init(NULL, args, - CEPH_ENTITY_TYPE_CLIENT, - CODE_ENVIRONMENT_UTILITY, 0); - common_init_finish(g_ceph_context); - - const char* env = getenv("CEPH_LIB"); - if (env) { - g_conf->set_val_or_die("erasure_code_dir", env, false); - g_conf->set_val_or_die("plugin_dir", env, false); - } - - ::testing::InitGoogleTest(&argc, argv); - return RUN_ALL_TESTS(); -} - -#endif