Skip to content
Snippets Groups Projects
  1. Feb 11, 2019
  2. Feb 05, 2019
  3. Jan 29, 2019
  4. Jan 23, 2019
  5. Nov 26, 2018
  6. Nov 19, 2018
    • vargheseg's avatar
      register_tests now takes working directory. · 13568613
      vargheseg authored
      usage:
      register_tests(SOURCES
                       ${list_of_source_files}
                       "test_src.cc"
                       ${concatenated_string_of_source_files}
                     NAMESPACE
                       "test_namespace"
                     LINK_LIBRARIES
                       ${list_of_targets}
                     INCLUDE_DIRECTORIES
                       ${list_of_include_directories}
                     COMPILE_OPTIONS
                       ${list_of_compile_options}
                     WORKING_DIRECTORY
                       ${ctest_working_directory})
      13568613
  7. Nov 16, 2018
  8. Nov 12, 2018
  9. Nov 08, 2018
    • Martin Christoph Hierholzer's avatar
      3de210c5
    • vargheseg's avatar
      Merge pull request #4 from vargheseg/master · 4bc4a0f0
      vargheseg authored
      Introduced cmake module registerTests:
      4bc4a0f0
    • vargheseg's avatar
      revised option names: · af46ca24
      vargheseg authored
      new scheme:
      register_tests(SOURCES
                       ${list_of_source_files}
                       "test_src.cc"
                       ${concatenated_string_of_source_files}
                     NAMESPACE
                       "test_namespace"
                     LINK_LIBRARIES
                       ${list_of_targets}
                     INCLUDE_DIRECTORIES
                       ${list_of_include_directories}
                     COMPILE_OPTIONS
                       ${list_of_compile_options})
      af46ca24
    • vargheseg's avatar
      Introduced cmake module registerTests: · c50b5abb
      vargheseg authored
      usage:
      register_tests(SOURCES
                       ${list_of_source_files}
                       "test_src.cc"
                       ${concatenated_string_of_source_files}
                     NAMESPACE
                       "test_namespace"
                     DEPENDS
                       ${list_of_targets}
                     INCLUDES
                       ${list_of_include_directories}
                     COMPILE_OPTIONS
                       ${list_of_compile_options})
      
      Function registers tests defined as a list of souce files.  Test defined
      by file source_name.cc in the SOURCES list is registered under the name
        test_namespace.source_name
      
      Provided list of dependent targets and include directories are used for
      test executables as PRIVATE dependencies during compilation.
      
      Function implicitly adds a dependency on the boost unit test framework
      to each generated test executable.
      c50b5abb
  10. Nov 05, 2018
  11. Oct 08, 2018
  12. Oct 04, 2018
  13. Oct 01, 2018
  14. Sep 14, 2018
  15. Sep 10, 2018
  16. Sep 05, 2018
  17. Aug 30, 2018
  18. Aug 27, 2018
  19. Aug 24, 2018
  20. Aug 20, 2018
  21. Aug 08, 2018
    • vargheseg's avatar
      Workaround for std::logic_error in 00.08.00 · 3e429f58
      vargheseg authored
      Issue:
      Server throws when there are no device module variables:
      
      terminate called after throwing an instance of 'std::logic_error'
        what():  ReadAnyGroup has no element with AccessMode::wait_for_new_data.
      Aborted (core dumped)
      
      This commit introduces a workaround as proposed by jens:
        void DoocsUpdater::updateLoop(){
             if (_elementsToRead.empty()) {
                 return;
             }
      
      This commit is intended to be reverted if the above strategy has side
      effects.
      3e429f58
Loading