1. 24 Dec, 2016 1 commit
  2. 23 Dec, 2016 1 commit
  3. 12 Dec, 2016 2 commits
  4. 09 Dec, 2016 1 commit
  5. 07 Dec, 2016 1 commit
  6. 05 Dec, 2016 2 commits
  7. 01 Dec, 2016 1 commit
    • David Gibson's avatar
      Makefile: Remove testdepends from make check dependencies · 2581e470
      David Gibson authored
      The new Makefile system, via the helper script in tools/gen_deps.sh, when
      generating the targets to test a module, inserts dependencies meaning it
      must first check modules this one depends on, whether via 'depends' or
      'testdepends' in _info.
      
      Although it seems logical, including 'testdepends' is actually incorrect.
      If ccan/a testepends on ccan/b then ccan/b must be *built* in order to test
      ccan/a, but it doesn't need to be tested.  testepends are explicitly
      permitted to contain loops - it's quite common for two complementary
      modules to be used to test each other.  This is one of the reasons
      testdepends exists separate from depends.
      
      So, remove testdepends from the generated check dependencies, removing the
      circular dependency that Make complains about.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      2581e470
  8. 30 Nov, 2016 3 commits
  9. 27 Nov, 2016 1 commit
    • Kevin Locke's avatar
      edit_distance: Rename ED_STACK_ELEMS ED_STACK_DIST_VALS · 346058c0
      Kevin Locke authored
      The previous name was misleading, since it does not define the number of
      elements (ed_elem) on the stack, but rather the number of distance
      values (ed_dist).  Rename to make this more clear and add more
      documentation about what it does and how best to define it.
      
      Note:  This is an API change for custom-compiled versions, but since the
      module has only been included for a couple days I don't think it's worth
      a back-compat #ifdef at this point.
      Signed-off-by: default avatarKevin Locke <kevin@kevinlocke.name>
      346058c0
  10. 23 Nov, 2016 2 commits
    • David Gibson's avatar
      .travis.yml: Enable C99 mode for older gcc versions · 18cbdae8
      David Gibson authored
      Currently Travis builds fail on the edit_distance module, because that
      module uses C99 extensions, which aren't enabled by default on the
      Ubuntu Precise compiler version.  Force it to allow these, by adding the
      -std=gnu99 option to the compiler.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      18cbdae8
    • Kevin Locke's avatar
      edit_distance: calculate edit distance between strings · e0663bef
      Kevin Locke authored
      This commit creates the edit_distance module for calculating various
      edit distance measures.  The edit distance quantifies the similarity
      between two strings based on the number of modifications necessary to
      turn one string into the other.  There are several edit distance
      measures which differ in the operations which are permitted and the
      cost (aka weight) of the operations.  This module provides functions
      for calculating the Longest Common Subsequence (LCS), Levenshtein, and
      Damerau-Levenshtein (restricted and unrestricted) distances.  Weighted
      versions of these functions can be created by defining cost functions
      as preprocessor macros when compiling this module.  Distances over
      other array types (e.g. wide strings, integers, structs) can be
      accomplished by defining the element type and equality test macros.
      Signed-off-by: default avatarKevin Locke <kevin@kevinlocke.name>
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      e0663bef
  11. 22 Nov, 2016 3 commits
  12. 21 Nov, 2016 6 commits
  13. 17 Nov, 2016 2 commits
  14. 07 Nov, 2016 2 commits
    • David Gibson's avatar
      Clearer output from make check in Travis · 03509101
      David Gibson authored
      This removes the parallel make (-j) option when running make check under
      Travis CI.  This will slow down the build somewhat, but makes it easier to
      match errors to the modules which caused them.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      03509101
    • David Gibson's avatar
      ccanlint: Alter meaning of --summary option · 655620a2
      David Gibson authored
      --summary (used by make check) causes ccanlint to only ever print a
      one-line summary of the results.  When one of the tests fails, this isn't
      very useful, because it doesn't say why it failed, or even which test
      failed.  This is particularly frustrating for failures in Travis CI builds
      where it's not always straightforward to reproduce a similar enough build
      environment to check the failure manually for a particular module.
      
      --summary does have one purpose which is vital for make check, though: it
      suppresses any attempt to interactively correct / improve the module
      printing only results.
      
      This changes --summary to only have the second effect, not the first.  This
      won't change the output in the case of passing modules, but will give more
      useful information in the case of failing modules.
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      655620a2
  15. 06 Nov, 2016 10 commits
  16. 04 Nov, 2016 2 commits