Re: [PATCH] test-lib-functions: show the test name at the start of verbose output

2019-08-05 Thread Johannes Schindelin
Hi Gábor, On Mon, 5 Aug 2019, SZEDER Gábor wrote: > On Sun, Aug 04, 2019 at 09:14:46PM +0200, Johannes Schindelin wrote: > > > > On Sat, 3 Aug 2019, SZEDER Gábor wrote: > > > > > So the dummy test above would start like this: > > > > > > expecting success of 'commit works': > > > echo

Re: [PATCH] test-lib-functions: show the test name at the start of verbose output

2019-08-05 Thread SZEDER Gábor
On Sun, Aug 04, 2019 at 09:14:46PM +0200, Johannes Schindelin wrote: > Hi, > > On Sat, 3 Aug 2019, SZEDER Gábor wrote: > > > So the dummy test above would start like this: > > > > expecting success of 'commit works': > > echo content >file && > > [...] > > Maybe it would make sense

Re: [PATCH] test-lib-functions: show the test name at the start of verbose output

2019-08-04 Thread Johannes Schindelin
Hi, On Sat, 3 Aug 2019, SZEDER Gábor wrote: > So the dummy test above would start like this: > > expecting success of 'commit works': > echo content >file && > [...] Maybe it would make sense to also mention the test and test case number, like so? expecting success of t987

[PATCH] test-lib-functions: show the test name at the start of verbose output

2019-08-03 Thread SZEDER Gábor
The verbose output of every test looks something like this: expecting success: echo content >file && git add file && git commit -m "add file" [master (root-commit) d1fbfbd] add file Author: A U Thor 1 file changed, 1 insertion(+) create mode 100644 file