summaryrefslogtreecommitdiff
path: root/src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp')
-rw-r--r--src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp b/src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp
index 0c1b52c6..2e059b09 100644
--- a/src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp
+++ b/src/Persistent_cohomology/test/persistent_cohomology_unit_test.cpp
@@ -17,11 +17,15 @@
using namespace Gudhi;
using namespace Gudhi::persistent_cohomology;
+using namespace boost::unit_test;
typedef Simplex_tree<> typeST;
std::string test_rips_persistence(int coefficient, int min_persistence) {
- const std::string inputFile("simplex_tree_file_for_unit_test.txt");
+ // Check file name is given as parameter from CMakeLists.txt
+ BOOST_CHECK(framework::master_test_suite().argc == 2);
+ const std::string inputFile(framework::master_test_suite().argv[1]);
+
std::ifstream simplex_tree_stream;
simplex_tree_stream.open(inputFile.c_str());
typeST st;