Re: [PATCH 1/3] t3034: add rename threshold tests

2016-02-23 Thread Felipe Gonçalves Assis
On 23 February 2016 at 21:50, Eric Sunshine wrote: > On Tue, Feb 23, 2016 at 6:48 PM, Felipe Gonçalves Assis > wrote: >> 10ae752 (merge-recursive: option to specify rename threshold, >> 2010-09-27) introduced this feature but did not include any tests. >> >> The tests use the new option --find-re

Re: [PATCH 1/3] t3034: add rename threshold tests

2016-02-23 Thread Eric Sunshine
On Tue, Feb 23, 2016 at 7:50 PM, Eric Sunshine wrote: > On Tue, Feb 23, 2016 at 6:48 PM, Felipe Gonçalves Assis > wrote: >> + if [ 50 -le "$th0" ]; then >> + check_50=check_threshold_0 >> + elif [ 50 -le "$th1" ]; then >> + check_50=check_threshold_1 >> +

Re: [PATCH 1/3] t3034: add rename threshold tests

2016-02-23 Thread Eric Sunshine
On Tue, Feb 23, 2016 at 6:48 PM, Felipe Gonçalves Assis wrote: > 10ae752 (merge-recursive: option to specify rename threshold, > 2010-09-27) introduced this feature but did not include any tests. > > The tests use the new option --find-renames, which replaces the then > introduced and now deprecat

[PATCH 1/3] t3034: add rename threshold tests

2016-02-23 Thread Felipe Gonçalves Assis
From: Felipe Gonçalves Assis 10ae752 (merge-recursive: option to specify rename threshold, 2010-09-27) introduced this feature but did not include any tests. The tests use the new option --find-renames, which replaces the then introduced and now deprecated option --rename-threshold. Also update

Re: [PATCH 1/3] t3034: add rename threshold tests

2016-02-22 Thread Junio C Hamano
"Felipe Gonçalves Assis" writes: > + test_cmp diff-output grep-output && > + while read status old new > + do > + th[${old:0:1}]=${status:1} > + done http://vger.kernel.org/majordomo-info.html

[PATCH 1/3] t3034: add rename threshold tests

2016-02-22 Thread Felipe Gonçalves Assis
10ae752 (merge-recursive: option to specify rename threshold, 2010-09-27) introduced this feature but did not include any tests. The tests use the new option --find-renames, which replaces the then introduced and now deprecated option --rename-threshold. Also update name and description of t3032