From e6918187568dbd01842d8d1d2c808ce16a894239 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 21 Apr 2024 13:54:28 +0200 Subject: Adding upstream version 18.2.2. Signed-off-by: Daniel Baumann --- src/test/unit.cc | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 src/test/unit.cc (limited to 'src/test/unit.cc') diff --git a/src/test/unit.cc b/src/test/unit.cc new file mode 100644 index 000000000..d845f8bee --- /dev/null +++ b/src/test/unit.cc @@ -0,0 +1,48 @@ +// -*- 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); + auto cct = global_init(NULL, args, + CEPH_ENTITY_TYPE_CLIENT, + CODE_ENVIRONMENT_UTILITY, + CINIT_FLAG_NO_MON_CONFIG); + common_init_finish(g_ceph_context); + + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); +} + +#endif -- cgit v1.2.3