forked from xtensor-stack/xtensor-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
33 lines (25 loc) · 1.01 KB
/
main.cpp
File metadata and controls
33 lines (25 loc) · 1.01 KB
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
/***************************************************************************
* Copyright (c) 2016, Johan Mabille and Sylvain Corlay *
* *
* Distributed under the terms of the BSD 3-Clause License. *
* *
* The full license is in the file LICENSE, distributed with this software. *
****************************************************************************/
#include <Python.h>
#include "pybind11/numpy.h"
#define FORCE_IMPORT_ARRAY
#include "xtensor-python/pyarray.hpp"
#include "gtest/gtest.h"
#include <iostream>
int main(int argc, char* argv[])
{
// Initialize all the things (google-test and Python interpreter)
Py_Initialize();
xt::import_numpy();
::testing::InitGoogleTest(&argc, argv);
// Run test suite
int ret = RUN_ALL_TESTS();
// Closure of the Python interpreter
Py_Finalize();
return ret;
}