Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Sbalzarini Lab
S
Software
P
Parallel Computing
OpenFPM
openfpm_io
Commits
6ad67146
Commit
6ad67146
authored
Jun 08, 2017
by
incardon
Browse files
Fixing io
parent
bd71552d
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
6ad67146
...
...
@@ -9,7 +9,7 @@
#include <boost/test/included/unit_test.hpp>
#include "VCluster/VCluster.hpp"
#include "unit_test_init_cleanup.hpp"
#include "unit_test_init_cleanup
_io
.hpp"
#include "VCluster/VCluster.hpp"
#include "CSVWriter/CSVWriter_unit_tests.hpp"
...
...
src/unit_test_init_cleanup_io.hpp
0 → 100644
View file @
6ad67146
/*
* unit_test_init_cleanup.hpp
*
* Created on: May 1, 2017
* Author: i-bird
*/
#ifndef OPENFPM_IO_SRC_UNIT_TEST_INIT_CLEANUP_IO_HPP_
#define OPENFPM_IO_SRC_UNIT_TEST_INIT_CLEANUP_IO_HPP_
struct
ut_start
{
//!
ut_start
()
{
BOOST_TEST_MESSAGE
(
"Initialize global VCluster"
);
openfpm_init
(
&
boost
::
unit_test
::
framework
::
master_test_suite
().
argc
,
&
boost
::
unit_test
::
framework
::
master_test_suite
().
argv
);
}
~
ut_start
()
{
BOOST_TEST_MESSAGE
(
"Delete global VClster"
);
openfpm_finalize
();
}
};
//____________________________________________________________________________//
BOOST_GLOBAL_FIXTURE
(
ut_start
);
#endif
/* OPENFPM_IO_SRC_UNIT_TEST_INIT_CLEANUP_IO_HPP_ */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment