]> git.proxmox.com Git - ceph.git/blame - ceph/src/test/crypto_init.cc
import 15.2.0 Octopus source
[ceph.git] / ceph / src / test / crypto_init.cc
CommitLineData
7c673cae
FG
1#include <errno.h>
2#include <time.h>
3#include <pthread.h>
4#include <unistd.h>
5#include <vector>
6
7#include "include/types.h"
8#include "common/code_environment.h"
9#include "global/global_context.h"
10#include "global/global_init.h"
11#include "include/msgr.h"
12#include "gtest/gtest.h"
13#include "auth/Crypto.h"
14#include "common/ceph_crypto.h"
15
9f95a23c 16// TODO: ensure OpenSSL init
7c673cae
FG
17
18int main(int argc, char **argv) {
19 ::testing::InitGoogleTest(&argc, argv);
20 return RUN_ALL_TESTS();
21}