Re: [PATCH v3 19/21] t: add basic bitmap functionality tests

2013-12-21 Thread Jeff King
On Sat, Dec 07, 2013 at 05:43:29PM +0100, Thomas Rast wrote: > One nit: > > > +test_expect_success JGIT 'jgit can read our bitmaps' ' > > + git clone . compat-us.git && > > + ( > > + cd compat-us.git && > > The name suggests a bare repo, but it is a full clone. Not that it > matte

Re: [PATCH v3 19/21] t: add basic bitmap functionality tests

2013-12-07 Thread Thomas Rast
Jeff King writes: > Now that we can read and write bitmaps, we can exercise them > with some basic functionality tests. These tests aren't > particularly useful for seeing the benefit, as the test > repo is too small for it to make a difference. However, we > can at least check that using bitmaps

[PATCH v3 19/21] t: add basic bitmap functionality tests

2013-11-14 Thread Jeff King
Now that we can read and write bitmaps, we can exercise them with some basic functionality tests. These tests aren't particularly useful for seeing the benefit, as the test repo is too small for it to make a difference. However, we can at least check that using bitmaps does not break anything. Sig