Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
35 lines (27 loc) · 1.09 KB

File metadata and controls

35 lines (27 loc) · 1.09 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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) 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. *
****************************************************************************/
// Required to avoid the error "std does not have memeber copysign"
#include <cmath>
#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;
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.