From 6faa1e0f6d21afae55f664c1649bad126d9892de Mon Sep 17 00:00:00 2001 From: Pietro Incardona <incardon@mpi-cbg.de> Date: Wed, 28 Dec 2016 22:14:20 +0100 Subject: [PATCH] Fixing output file for performance --- src/Vector/performance/cell_list_comp_reorder.hpp | 2 +- src/Vector/performance/cell_list_part_reorder.hpp | 2 +- src/Vector/performance/verlet_performance_tests.hpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Vector/performance/cell_list_comp_reorder.hpp b/src/Vector/performance/cell_list_comp_reorder.hpp index 7ae2d5a2..04ec1da2 100644 --- a/src/Vector/performance/cell_list_comp_reorder.hpp +++ b/src/Vector/performance/cell_list_comp_reorder.hpp @@ -136,7 +136,7 @@ BOOST_AUTO_TEST_CASE(vector_dist_cl_performance_write_report) // write the xml report pt.put("celllist.comp.warning",warning_level); - cg.write(std::string(test_dir) + "/openfpm_pdata/Celllist_comp_ord.html"); + cg.write("Celllist_comp_ord.html"); } } diff --git a/src/Vector/performance/cell_list_part_reorder.hpp b/src/Vector/performance/cell_list_part_reorder.hpp index 0cdb09cb..044a91de 100644 --- a/src/Vector/performance/cell_list_part_reorder.hpp +++ b/src/Vector/performance/cell_list_part_reorder.hpp @@ -118,7 +118,7 @@ BOOST_AUTO_TEST_CASE(vector_dist_cl_performance_write_report) addUpdtateTime(cg); if (create_vcluster().getProcessUnitID() == 0) - cg.write(std::string(test_dir) + "/openfpm_pdata/Celllist_part_ord.html"); + cg.write("Celllist_part_ord.html"); } BOOST_AUTO_TEST_SUITE_END() diff --git a/src/Vector/performance/verlet_performance_tests.hpp b/src/Vector/performance/verlet_performance_tests.hpp index 83141fe4..612872e1 100644 --- a/src/Vector/performance/verlet_performance_tests.hpp +++ b/src/Vector/performance/verlet_performance_tests.hpp @@ -57,7 +57,7 @@ BOOST_AUTO_TEST_CASE(vector_dist_verlet_performance_write_report) { addUpdtateTime(cg); - cg.write(std::string(test_dir) + "/openfpm_pdata/Verletlist_comp.html"); + cg.write("Verletlist_comp.html"); } } -- GitLab