Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Changed the 2 unit tests, snapshot and PAGESTORE, into BOOST unit tests.
authoronesphore <ndayishimiye.o@husky.neu.edu>
Mon, 25 Jun 2018 15:06:39 +0000 (17:06 +0200)
committeronesphore <ndayishimiye.o@husky.neu.edu>
Mon, 25 Jun 2018 15:06:39 +0000 (17:06 +0200)
src/mc/remote/RemoteClient.cpp
tools/cmake/Tests.cmake

index da2a2c3..6f7505f 100644 (file)
@@ -100,7 +100,8 @@ static const std::vector<std::string> filtered_libraries = {
     "libunwind-x86_64",
     "libunwind-x86",
     "libunwind-ptrace",
     "libunwind-x86_64",
     "libunwind-x86",
     "libunwind-ptrace",
-    "libz"};
+    "libz",
+    "libboost_unit_test_framework"};
 
 static bool is_simgrid_lib(const std::string& libname)
 {
 
 static bool is_simgrid_lib(const std::string& libname)
 {
index 2e86d12..01a5e7d 100644 (file)
@@ -101,6 +101,7 @@ if(Boost_UNIT_TEST_FRAMEWORK_FOUND)
            INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}"
           )
   if (SIMGRID_HAVE_MC)
            INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}"
           )
   if (SIMGRID_HAVE_MC)
+    # snapshot
     add_executable       (unit_snapshot src/mc/snapshot/unitTest/mc_snapshot_unit_BOOST.cpp)
     target_link_libraries(unit_snapshot simgrid boost_unit_test_framework)
     ADD_TEST(unit_snapshot ${CMAKE_BINARY_DIR}/unit_snapshot --build_info=yes)
     add_executable       (unit_snapshot src/mc/snapshot/unitTest/mc_snapshot_unit_BOOST.cpp)
     target_link_libraries(unit_snapshot simgrid boost_unit_test_framework)
     ADD_TEST(unit_snapshot ${CMAKE_BINARY_DIR}/unit_snapshot --build_info=yes)
@@ -109,6 +110,16 @@ if(Boost_UNIT_TEST_FRAMEWORK_FOUND)
       APPEND PROPERTY
              INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}"
             )
       APPEND PROPERTY
              INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}"
             )
+    # PAGESTORE
+    add_executable       (unit_PAGESTORE src/mc/snapshot/unitTest/PageStore_unit_BOOST.cpp)
+    target_link_libraries(unit_PAGESTORE simgrid boost_unit_test_framework)
+    ADD_TEST(unit_PAGESTORE ${CMAKE_BINARY_DIR}/unit_PAGESTORE --build_info=yes)
+    set_property(
+      TARGET unit_PAGESTORE
+      APPEND PROPERTY
+             INCLUDE_DIRECTORIES "${INTERNAL_INCLUDES}"
+            )
+
   endif()
 
 
   endif()