You need to sign in or sign up before continuing.
  1. 27 Apr, 2020 3 commits
  2. 18 Apr, 2020 1 commit
  3. 13 Apr, 2020 1 commit
    • grmt's avatar
      add wss transport and fix tipc tests when building using cmake on linux (#3857) · 718ad8ab
      grmt authored
      * Allow CMAKE to generate ws and wss transports
      I guess there is little use of just ws transport, so by default
      GnuTLS (and libsodium) are enabled
      
      * cmake libzmq including wss transport (ubuntu 19.10 and ubuntu 19.10 + wsl 1.0)
      test_security_fails (libsodium assert !?)
      
      * updated relicense
      
      * make external libs gnutls nss sodium optional
      
      * #ifdef WSS classes and functions, build test*ws* only if correct libs are included, warning if libs not present
      
      * make libsodium optional
      
      * cmake fix tests TIPC transport
      
      * clang-format pointed out a wrongly placed #ifdef
      
      * GnuTLS before 3.6.7 is not safe
      
      * msvc doesn't agree with strlen in array declaration, test_socks now at least compiles on windows
      
      * windows: libsodium build fails, missing include dirs set by env var
      
      * ws transport test only works when GnuTLS is found
      
      * Fixed condition to use NSS / built in SHA1, so that test_ws_transport should now pass, also when GnuTLS is not found
      718ad8ab
  4. 09 Apr, 2020 1 commit
  5. 23 Feb, 2020 1 commit
  6. 09 Feb, 2020 1 commit
  7. 03 Feb, 2020 1 commit
  8. 31 Oct, 2019 1 commit
  9. 29 Oct, 2019 1 commit
  10. 17 May, 2019 1 commit
  11. 18 Apr, 2019 1 commit
  12. 23 Mar, 2019 2 commits
  13. 22 Mar, 2019 1 commit
  14. 16 Mar, 2019 1 commit
  15. 07 Feb, 2019 3 commits
  16. 02 Feb, 2019 1 commit
  17. 13 Sep, 2018 1 commit
  18. 09 Sep, 2018 1 commit
    • Christoph Schulz's avatar
      Conform to `cmakelint --filter=-linelength` · a21228b6
      Christoph Schulz authored
      - Lowercase all commands
      - Unify indent to 2 spaces
      - Remove spaces around brackets
      - Remove repitition of condition in else(...) and endif(...)
      
      Note: (re-)running CMake did not change the content of the generated files
      a21228b6
  19. 23 Aug, 2018 1 commit
  20. 16 Aug, 2018 2 commits
  21. 15 Aug, 2018 1 commit
  22. 23 Jun, 2018 1 commit
  23. 01 Jun, 2018 1 commit
  24. 24 May, 2018 2 commits
  25. 23 May, 2018 2 commits
  26. 28 Apr, 2018 1 commit
  27. 16 Mar, 2018 2 commits
  28. 15 Mar, 2018 1 commit
  29. 14 Mar, 2018 2 commits
  30. 09 Mar, 2018 1 commit
    • Luca Boccassi's avatar
      Problem: TIPC availability check is too strict (#2977) · 19060345
      Luca Boccassi authored
      * Problem: TIPC availability check is too strict
      
      Solution: at build time only check if the API is available. In the tests
      do a first check and a skip if the functionality is not available.
      
      TIPC needs an in-tree but not loaded by default kernel module, tipc.ko
      to be loaded, which requires root, so it is unlikely to be available on
      any build system by default.
      This will allow most distributions to ship with TIPC support built in,
      and to avoid tests failure if the module is not there.
      
      * Problem: no Travis tests for TIPC
      
      Solution: mark one job with sudo: required and load the kernel module
      
      * Problem: CMake fails when test returns 77 (skip)
      
      Solution: set property to let it mark the test as skipped as intended
      19060345