forked from xtensor-stack/xtensor-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
35 lines (26 loc) · 1.12 KB
/
main.cpp
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
/***************************************************************************
* Copyright (c) Wolf Vollprecht, Johan Mabille and Sylvain Corlay *
* Copyright (c) QuantStack *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
// Required to avoid the error "std does not have member copysign"
#include <cmath>
#include "gtest/gtest.h"
#include <pybind11/embed.h>
#define FORCE_IMPORT_ARRAY
#include "xtensor-python/pyarray.hpp"
namespace py = pybind11;
int main(int argc, char* argv[])
{
// Initialize all the things (Python, numpy, gtest)
py::scoped_interpreter guard{};
xt::import_numpy();
::testing::InitGoogleTest(&argc, argv);
// Run test suite
int ret = RUN_ALL_TESTS();
// Return test results
return ret;
}