1. 21 Nov, 2016 4 commits
  2. 17 Nov, 2016 2 commits
  3. 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
  4. 06 Nov, 2016 10 commits
  5. 04 Nov, 2016 9 commits
  6. 02 Nov, 2016 1 commit
  7. 31 Oct, 2016 4 commits
  8. 30 Oct, 2016 1 commit
  9. 28 Oct, 2016 1 commit
    • Rusty Russell's avatar
      jmap: fix tools/speed · 8b83ecf3
      Rusty Russell authored
      Minor fixes on top of patch from rocco@tecsiel.it:
      
      Hi Rusty,
      latest git version of the file ccan/jmap/tools/speed.c does not
      compile.
      
      Please find attacched my own version with the following differences:
      
        1. deleted inclusion of <ccan/jmap/jmap_type.h> which is no longer in ccan/
      
        2. added inclusion of <ccan/time/time.h>
      
        3. added definition of struct jmap_obj in terms of JMAP_MEMBERS();
      
        4. deleted use of macro JMAP_DEFINE_UINTIDX_TYPE() which is no longer needed
      
        5. changed function normalize() to be aligned with ccan/htable/tools/speed.c
      
        6. repleaced gettimeofday() in favour of time_now()
      
        7. added memory cleanup at the end of the program in terms of
             jmap_free(jmap);
             free(objs);
           to be valgrind safe
      Signed-off-by: default avatarRusty Russell <rusty@rustcorp.com.au>
      8b83ecf3
  10. 25 Oct, 2016 6 commits