Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ install:
- conda update -q conda
# Useful for debugging any issues with conda
- conda info -a
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION boost fftw numpy pybind11 cmake gxx_linux-64 eigen
- conda create -q -n test-environment
- source activate test-environment
- conda config --env --add channels conda-forge
- conda install python=$TRAVIS_PYTHON_VERSION boost fftw numpy pybind11=2.2.* cmake compilers eigen
- export BOOST_DIR=$CONDA_PREFIX
- export EIGEN_DIR=$CONDA_PREFIX
- export FFTW_DIR=$CONDA_PREFIX
- export CMAKE_PREFIX_PATH=$CONDA_PREFIX
# For conda-forge's old glibc
- export LDFLAGS="-lrt ${LDFLAGS}"

script:
- mkdir build
Expand Down
3 changes: 1 addition & 2 deletions tests/ndarray-eigen.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@
#include "ndarray/eigen.h"
#include "Eigen/SVD"

#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE ndarray-eigen
#include "boost/test/unit_test.hpp"
#include "boost/test/included/unit_test.hpp"

template <typename T, typename U>
void testElements2(T const & a, U const & b) {
Expand Down
3 changes: 1 addition & 2 deletions tests/ndarray-fft.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
*/
#include <ndarray/fft.h>

#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE ndarray-fft
#include "boost/test/unit_test.hpp"
#include "boost/test/included/unit_test.hpp"

#include <sstream>

Expand Down
3 changes: 1 addition & 2 deletions tests/ndarray.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
*/
#include "ndarray.h"

#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE ndarray
#include "boost/test/unit_test.hpp"
#include "boost/test/included/unit_test.hpp"

BOOST_AUTO_TEST_CASE(sizes) {
std::cerr << "sizeof(int): " << sizeof(int) << "\n";
Expand Down
3 changes: 1 addition & 2 deletions tests/views.cc
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,8 @@
*/
#include "ndarray.h"

#define BOOST_TEST_DYN_LINK
#define BOOST_TEST_MODULE views
#include "boost/test/unit_test.hpp"
#include "boost/test/included/unit_test.hpp"

template <typename T, int N, int C>
int templateC(ndarray::ArrayRef<T,N,C> const &) { return C; }
Expand Down