blob: f17f4053ae8867c30129fc986ef3ed1b323faa75 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// -*- 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 <vector>
#include <gtest/gtest.h>
#include "include/msgr.h" // for CEPH_ENTITY_TYPE_CLIENT
#include "common/code_environment.h"
#include "global/global_context.h"
#include "global/global_init.h"
/*
* 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<const char*> args;
global_init(NULL, args, CEPH_ENTITY_TYPE_CLIENT, CODE_ENVIRONMENT_UTILITY,
CINIT_FLAG_NO_DEFAULT_CONFIG_FILE);
common_init_finish(g_ceph_context);
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}
#endif
|