Re: [RFC/PATCH] Better control of the tests run by a test suite

2014-03-27 Thread Ilya Bobyr
On 3/24/2014 9:58 PM, Junio C Hamano wrote: > Jeff King writes: > >> On Mon, Mar 24, 2014 at 01:49:44AM -0700, Ilya Bobyr wrote: >> >>> Here are some examples of how functionality added by the patch >>> could be used. In order to run setup tests and then only a >>> specific test (use case 1) one

Re: [RFC/PATCH] Better control of the tests run by a test suite

2014-03-24 Thread Junio C Hamano
Jeff King writes: > On Mon, Mar 24, 2014 at 01:49:44AM -0700, Ilya Bobyr wrote: > >> Here are some examples of how functionality added by the patch >> could be used. In order to run setup tests and then only a >> specific test (use case 1) one can do: >> >> $ ./t-init.sh --run='1 2 25'

Re: [RFC/PATCH] Better control of the tests run by a test suite

2014-03-24 Thread Jeff King
On Mon, Mar 24, 2014 at 01:49:44AM -0700, Ilya Bobyr wrote: > Here are some examples of how functionality added by the patch > could be used. In order to run setup tests and then only a > specific test (use case 1) one can do: > > $ ./t-init.sh --run='1 2 25' > > or: > > $ ./t-

[RFC/PATCH] Better control of the tests run by a test suite

2014-03-24 Thread Ilya Bobyr
Hello, This is a second attempt on a functionality I proposed in [PATCH 2/2] test-lib: GIT_TEST_ONLY to run only specific tests http://www.mail-archive.com/git%40vger.kernel.org/msg44828.html except that the implementation is quite different now. I hope that I have accounted for the com