1. 19 4月, 2015 2 次提交
  2. 17 4月, 2015 4 次提交
  3. 14 4月, 2015 6 次提交
  4. 13 4月, 2015 10 次提交
  5. 12 4月, 2015 11 次提交
  6. 08 4月, 2015 3 次提交
  7. 07 4月, 2015 4 次提交
    • Don't use wildcards to look for .go files in tests makefile · f2dd060e
      GNU Make's wildcard function does not recurse into subdirectories when
      passed the '**' glob, which results in adding a dependency only to .go
      files in the first level of subdirectories under the source root.
      
      We shell out to 'find' instead, which catches all .go files in the
      given directory.
      Tor Arne Vestbø 提交于
    • Fix dependencies in sharness test makefile · 7b49419d
      Running make -jN would result in the tests starting to execute
      before the tests binaries were built, resulting in the error:
      
       "Cannot find the tests' local ipfs tool"
      
      Each test now depends on the deps. They also depend on a new
      target for cleaning the test results, so that the tests can
      write new clean results.
      
      The aggregate target also needs to depend on the same test
      results clean target, as well as the tests themselves, so
      that the aggregation happens when all tests have finished
      running.
      
      By introducing a separate target for cleaning test results we
      also ensure that we don't end up removing and rebuilding
      the binary on each test run.
      
      The result is that the tests *can* be run with with -jN > 1,
      but individual tests may still not supports this, so to get
      stable test results it's still recommended to run them in
      sequence.
      Tor Arne Vestbø 提交于
    • Ensure IPFS-BUILD-OPTIONS build dependency is created · d36a9eef
      If the file doesn't exist, make will conclude that the missing
      prerequisite should trigger a rebuild of the binaries.
      Tor Arne Vestbø 提交于
    • Merge pull request #1021 from ipfs/bloom-filter-fix · 096420cb
      Make bloom filters simpler
      Juan Batiz-Benet 提交于