1. 13 May, 2015 4 commits
  2. 12 May, 2015 7 commits
  3. 11 May, 2015 5 commits
  4. 10 May, 2015 5 commits
  5. 09 May, 2015 4 commits
  6. 08 May, 2015 1 commit
  7. 07 May, 2015 2 commits
    • Dominik Charousset's avatar
      Merge pull request #285 from actor-framework/topic/enhance-extract-opts · eacae4a5
      Dominik Charousset authored
      Make message::extract_opts more flexible
      eacae4a5
    • Matthias Vallentin's avatar
      Make message::extract_opts more flexible · 29bbac83
      Matthias Vallentin authored
      This function message::extract_opts no longer prints help text and errors
      to the console. These remain available in the result struct as members,
      however.
      
      Moreover, this commit also fixes a bug when users specified their own -h
      or -? option, but not --help. In this case extract_opts would override
      it with the default help arg. This no longer happens.
      
      Another extension concerns handling of values for single options: it is
      now possible to omit the space between a value and the single option,
      e.g., -v2 is equivalent to -v 2.
      29bbac83
  8. 04 May, 2015 1 commit
  9. 02 May, 2015 3 commits
  10. 29 Apr, 2015 1 commit
  11. 25 Apr, 2015 2 commits
  12. 23 Apr, 2015 3 commits
  13. 22 Apr, 2015 2 commits
    • Marian Triebe's avatar
      Port unit tests to new framework · 50615664
      Marian Triebe authored
      50615664
    • Matthias Vallentin's avatar
      Add ability to register command line arguments. · 7e7871c4
      Matthias Vallentin authored
      By adding a delimeter "--" into the sequence of arguments, it is now
      possible to partition the command line arguments into two halves.
      The unit test binary consumes everything before "--" and the unit test
      engine registers anything after "--".
      
      For example,
      
          caf-test -n -- foo bar
      
      passes "-n" to the caf-test parser to disable colors, whereas user tests
      can now access the remaining two arguments "foo" and "bar" via
      test::engine::argc() and test::engine::argv().
      7e7871c4