Re: Build broken for contrib/remote-helpers...

2013-01-22 Thread Jeff King
On Tue, Jan 22, 2013 at 12:49:31AM -0500, John Szakmeister wrote: I tried running make in contrib/remote-helpers and it died with: :: make make -e -C ../../t test rm -f -r test-results duplicate test numbers: /Users/jszakmeister/sources/git make[1]: ***

Re: Build broken for contrib/remote-helpers...

2013-01-22 Thread Torsten Bögershausen
On 22.01.13 20:41, Jeff King wrote: On Tue, Jan 22, 2013 at 12:49:31AM -0500, John Szakmeister wrote: I tried running make in contrib/remote-helpers and it died with: :: make make -e -C ../../t test rm -f -r test-results duplicate test numbers:

Re: Build broken for contrib/remote-helpers...

2013-01-22 Thread Junio C Hamano
Torsten Bögershausen tbo...@web.de writes: So it finds whatever is before the first -, which would be the test number in t-basic.sh or similar, and then looks for duplicates. would it help to filter for numbered tests before sorting like this: sed 's/-.*//' | grep [0-9][0-9][0-9][0-9]|