From e7b7058492ac98d7e2f710e033eb258249dcdf60 Mon Sep 17 00:00:00 2001
From: Pietro Incardona <incardon@mpi-cbg.de>
Date: Sun, 2 Dec 2018 11:24:37 +0100
Subject: [PATCH] Fixing the test to exclude EIGEN test when not detected

---
 src/Matrix/SparseMatrix_unit_tests.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/Matrix/SparseMatrix_unit_tests.cpp b/src/Matrix/SparseMatrix_unit_tests.cpp
index 80cb558..393285a 100644
--- a/src/Matrix/SparseMatrix_unit_tests.cpp
+++ b/src/Matrix/SparseMatrix_unit_tests.cpp
@@ -26,6 +26,8 @@ BOOST_AUTO_TEST_SUITE( sparse_matrix_test_suite )
 
 BOOST_AUTO_TEST_CASE(sparse_matrix_eigen_parallel)
 {
+#ifdef HAVE_EIGEN
+
 	Vcluster<> & vcl = create_vcluster();
 
 	if (vcl.getProcessingUnits() != 3)
@@ -169,6 +171,8 @@ BOOST_AUTO_TEST_CASE(sparse_matrix_eigen_parallel)
 		BOOST_REQUIRE_CLOSE(x(7), -8, 0.001);
 		BOOST_REQUIRE_CLOSE(x(8), -4.5, 0.001);
 	}
+
+#endif
 }
 
 #ifdef HAVE_PETSC
-- 
GitLab