Re: [PATCH v3 06/21] t1700: add tests for core.splitIndex

2017-01-03 Thread Junio C Hamano
Christian Couder writes: > Ok, I will add a patch to update the style of the existing tests at > the beginning of the series and then use the same new style in the > tests I add in later patches. That's not what I meant---I was expecting and was willing to accept a

Re: [PATCH v3 06/21] t1700: add tests for core.splitIndex

2017-01-02 Thread Christian Couder
On Tue, Dec 27, 2016 at 8:04 PM, Junio C Hamano wrote: > Christian Couder writes: > >> +test_expect_success 'set core.splitIndex config variable to true' ' >> + git config core.splitIndex true && >> + : >three && >> + git update-index

Re: [PATCH v3 06/21] t1700: add tests for core.splitIndex

2016-12-27 Thread Junio C Hamano
Christian Couder writes: > +test_expect_success 'set core.splitIndex config variable to true' ' > + git config core.splitIndex true && > + : >three && > + git update-index --add three && > + git ls-files --stage >ls-files.actual && > + cat

[PATCH v3 06/21] t1700: add tests for core.splitIndex

2016-12-26 Thread Christian Couder
Signed-off-by: Christian Couder --- t/t1700-split-index.sh | 37 + 1 file changed, 37 insertions(+) diff --git a/t/t1700-split-index.sh b/t/t1700-split-index.sh index 292a0720fc..db8c39f446 100755 --- a/t/t1700-split-index.sh +++