Thread
Commits
-
pg_regress: Don't use absolute paths for the diff
- 1995552deb54 12.0 landed
-
Use standard diff separator for regression.diffs
- 8f27a14b1bd3 12.0 landed
-
Time to change pg_regress diffs to unified by default?
Andres Freund <andres@anarazel.de> — 2017-04-06T22:31:03Z
Hi, I personally, and I know of a bunch of other regular contributors, find context diffs very hard to read. Besides general dislike, for things like regression test output context diffs are just not well suited. E.g. in https://buildfarm.postgresql.org/cgi-bin/show_stage_log.pl?nm=prairiedog&dt=2017-04-06%2021%3A10%3A56&stg=check the salient point (ERROR: 50 is outside the valid range for parameter "effective_io_concurrency" (0 .. 0)) is 130 lines into the diff, whereas it's right at the start in a unified diff. Issues with one error that causes a lot of followup output changes are really common in our regression suite. I personally have PG_REGRESS_DIFF_OPTS set to -dU10, but that doesn't help much analyzing buildfarm output. Therefore I propose changing the defaults in pg_regress.c. Greetings, Andres Freund
-
Re: Time to change pg_regress diffs to unified by default?
Thomas Munro <thomas.munro@enterprisedb.com> — 2017-04-06T22:35:06Z
On Fri, Apr 7, 2017 at 10:31 AM, Andres Freund <andres@anarazel.de> wrote: > Hi, > > I personally, and I know of a bunch of other regular contributors, find > context diffs very hard to read. Besides general dislike, for things > like regression test output context diffs are just not well suited. > E.g. in > https://buildfarm.postgresql.org/cgi-bin/show_stage_log.pl?nm=prairiedog&dt=2017-04-06%2021%3A10%3A56&stg=check > the salient point (ERROR: 50 is outside the valid range for parameter "effective_io_concurrency" (0 .. 0)) > is 130 lines into the diff, whereas it's right at the start in a unified diff. > Issues with one error that causes a lot of followup output changes are > really common in our regression suite. > > I personally have PG_REGRESS_DIFF_OPTS set to -dU10, but that doesn't > help much analyzing buildfarm output. > > Therefore I propose changing the defaults in pg_regress.c. +1 So much easier to read. -- Thomas Munro http://www.enterprisedb.com
-
Re: Time to change pg_regress diffs to unified by default?
Andrew Dunstan <andrew.dunstan@2ndquadrant.com> — 2017-04-06T22:36:37Z
On 04/06/2017 06:31 PM, Andres Freund wrote: > Hi, > > I personally, and I know of a bunch of other regular contributors, find > context diffs very hard to read. Besides general dislike, for things > like regression test output context diffs are just not well suited. > E.g. in > https://buildfarm.postgresql.org/cgi-bin/show_stage_log.pl?nm=prairiedog&dt=2017-04-06%2021%3A10%3A56&stg=check > the salient point (ERROR: 50 is outside the valid range for parameter "effective_io_concurrency" (0 .. 0)) > is 130 lines into the diff, whereas it's right at the start in a unified diff. > Issues with one error that causes a lot of followup output changes are > really common in our regression suite. > > I personally have PG_REGRESS_DIFF_OPTS set to -dU10, but that doesn't > help much analyzing buildfarm output. > > Therefore I propose changing the defaults in pg_regress.c. > +1 cheers andrew -- Andrew Dunstan https://www.2ndQuadrant.com PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: Time to change pg_regress diffs to unified by default?
Tom Lane <tgl@sss.pgh.pa.us> — 2017-04-06T23:01:32Z
Andres Freund <andres@anarazel.de> writes: > I personally, and I know of a bunch of other regular contributors, find > context diffs very hard to read. Besides general dislike, for things > like regression test output context diffs are just not well suited. Personally, I disagree completely. Unified diffs are utterly unreadable for anything beyond trivial cases of small well-separated changes. It's possible that regression failure diffs will usually fall into that category, but I'm not convinced. regards, tom lane
-
Re: Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2017-04-07T01:17:32Z
On 4/6/17 18:31, Andres Freund wrote: > I personally have PG_REGRESS_DIFF_OPTS set to -dU10, but that doesn't > help much analyzing buildfarm output. > > Therefore I propose changing the defaults in pg_regress.c. I think one problem is that diff -u is not as portable as diff -c. For example, the HP-UX 11 man page of diff doesn't list it. -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: Time to change pg_regress diffs to unified by default?
Andrew Dunstan <andrew.dunstan@2ndquadrant.com> — 2017-04-07T01:56:05Z
On 04/06/2017 09:17 PM, Peter Eisentraut wrote: > On 4/6/17 18:31, Andres Freund wrote: >> I personally have PG_REGRESS_DIFF_OPTS set to -dU10, but that doesn't >> help much analyzing buildfarm output. >> >> Therefore I propose changing the defaults in pg_regress.c. > I think one problem is that diff -u is not as portable as diff -c. For > example, the HP-UX 11 man page of diff doesn't list it. > Ugh. I suppose we could run a test to see if it was available. If it comes to that, I guess I could do a similar test in the buildfarm client. Seems a bit like overkill, though. cheers andrew -- Andrew Dunstan https://www.2ndQuadrant.com PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: Time to change pg_regress diffs to unified by default?
David Rowley <david.rowley@2ndquadrant.com> — 2017-04-07T02:13:10Z
On 7 April 2017 at 10:31, Andres Freund <andres@anarazel.de> wrote: > Hi, > > I personally, and I know of a bunch of other regular contributors, find > context diffs very hard to read. Besides general dislike, for things > like regression test output context diffs are just not well suited. > E.g. in > https://buildfarm.postgresql.org/cgi-bin/show_stage_log.pl?nm=prairiedog&dt=2017-04-06%2021%3A10%3A56&stg=check > the salient point (ERROR: 50 is outside the valid range for parameter "effective_io_concurrency" (0 .. 0)) > is 130 lines into the diff, whereas it's right at the start in a unified diff. > Issues with one error that causes a lot of followup output changes are > really common in our regression suite. > > I personally have PG_REGRESS_DIFF_OPTS set to -dU10, but that doesn't > help much analyzing buildfarm output. > > Therefore I propose changing the defaults in pg_regress.c. You mean people actually use those diffs? I've never done anything apart from using <my favourite text comparison tool>. That way I can reject and accept the changes as I wish, just by kicking the results over to the expected results, or not, if there's a genuine mistake. -- David Rowley http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Training & Services
-
Re: Time to change pg_regress diffs to unified by default?
Noah Misch <noah@leadboat.com> — 2017-04-07T02:14:31Z
On Thu, Apr 06, 2017 at 07:01:32PM -0400, Tom Lane wrote: > Andres Freund <andres@anarazel.de> writes: > > I personally, and I know of a bunch of other regular contributors, find > > context diffs very hard to read. Besides general dislike, for things > > like regression test output context diffs are just not well suited. > > Personally, I disagree completely. Unified diffs are utterly unreadable > for anything beyond trivial cases of small well-separated changes. > > It's possible that regression failure diffs will usually fall into that > category, but I'm not convinced. For reading patches, I frequently use both formats. Overall, I perhaps read unified 3/4 of the time and context 1/4 of the time. For regression diffs, I use PG_REGRESS_DIFF_OPTS=-u and have never converted a regression diff to context form. Hence, +1 for the proposed change.
-
Re: Time to change pg_regress diffs to unified by default?
Tom Lane <tgl@sss.pgh.pa.us> — 2017-04-07T02:54:17Z
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: > I think one problem is that diff -u is not as portable as diff -c. For > example, the HP-UX 11 man page of diff doesn't list it. FWIW, I can confirm that HPUX 10.20's diff hasn't got it. That would not affect gaur/pademelon, if we make this change, because I installed GNU diffutils on that machine a decade or two ago. It might be a bigger issue for the other HPUX critters though. Some other data points: * POSIX 2008 requires diff -u. * SUS v2 (POSIX 1997) does not. * My other pet dinosaur, prairiedog (macOS 10.4 something), has it. regards, tom lane
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Christoph Berg <myon@debian.org> — 2018-11-22T13:10:59Z
Re: Noah Misch 2017-04-07 <20170407021431.GB2658646@tornado.leadboat.com> > > > I personally, and I know of a bunch of other regular contributors, find > > > context diffs very hard to read. Besides general dislike, for things > > > like regression test output context diffs are just not well suited. > > > > Personally, I disagree completely. Unified diffs are utterly unreadable > > for anything beyond trivial cases of small well-separated changes. > > > > It's possible that regression failure diffs will usually fall into that > > category, but I'm not convinced. > > For reading patches, I frequently use both formats. Overall, I perhaps read > unified 3/4 of the time and context 1/4 of the time. > > For regression diffs, I use PG_REGRESS_DIFF_OPTS=-u and have never converted a > regression diff to context form. Hence, +1 for the proposed change. I've just had another case of horrible context diff from pg_regress. I'd claim that regression diffs are particularly bad for context diffs because one error will often trigger a whole chain of failures, which will essentially make the whole file appear twice in the output, whereas unified diffs would just put the original output and the error right next to each other at the top. Having to scroll through a whole .out file just to find "create extension; file not found" is very inefficient. It's nice that PG_REGRESS_DIFF_OPTS exists, but the diffs are often coming from automated build logs where setting the variable after the fact doesn't help. Please consider the attached patch, extension packagers will thank you. Christoph
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
David Fetter <david@fetter.org> — 2018-11-25T23:32:30Z
On Thu, Nov 22, 2018 at 02:10:59PM +0100, Christoph Berg wrote: > Re: Noah Misch 2017-04-07 <20170407021431.GB2658646@tornado.leadboat.com> > > > > I personally, and I know of a bunch of other regular contributors, find > > > > context diffs very hard to read. Besides general dislike, for things > > > > like regression test output context diffs are just not well suited. > > > > > > Personally, I disagree completely. Unified diffs are utterly unreadable > > > for anything beyond trivial cases of small well-separated changes. > > > > > > It's possible that regression failure diffs will usually fall into that > > > category, but I'm not convinced. > > > > For reading patches, I frequently use both formats. Overall, I perhaps read > > unified 3/4 of the time and context 1/4 of the time. > > > > For regression diffs, I use PG_REGRESS_DIFF_OPTS=-u and have never converted a > > regression diff to context form. Hence, +1 for the proposed change. > > I've just had another case of horrible context diff from pg_regress. > I'd claim that regression diffs are particularly bad for context diffs > because one error will often trigger a whole chain of failures, which > will essentially make the whole file appear twice in the output, > whereas unified diffs would just put the original output and the error > right next to each other at the top. Having to scroll through a whole > .out file just to find "create extension; file not found" is very > inefficient. > > It's nice that PG_REGRESS_DIFF_OPTS exists, but the diffs are often > coming from automated build logs where setting the variable after the > fact doesn't help. > > Please consider the attached patch, extension packagers will thank > you. > > Christoph +1 for pushing this. Regression diffs can get pretty noisy even with it in place. Best, David. -- David Fetter <david(at)fetter(dot)org> http://fetter.org/ Phone: +1 415 235 3778 Remember to vote! Consider donating to Postgres: http://www.postgresql.org/about/donate
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2019-01-02T20:30:04Z
On 22/11/2018 14:10, Christoph Berg wrote: > It's nice that PG_REGRESS_DIFF_OPTS exists, but the diffs are often > coming from automated build logs where setting the variable after the > fact doesn't help. > > Please consider the attached patch, extension packagers will thank > you. Committed. While we're considering the pg_regress output, what do you think about replacing the ======... separator with a standard diff separator like "diff %s %s %s\n". This would make the file behave more like a proper diff file, for use with other tools. And it shows the diff options used, for clarity. See attached patch. -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Tom Lane <tgl@sss.pgh.pa.us> — 2019-01-02T20:44:49Z
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: > While we're considering the pg_regress output, what do you think about > replacing the ======... separator with a standard diff separator like > "diff %s %s %s\n". This would make the file behave more like a proper > diff file, for use with other tools. And it shows the diff options > used, for clarity. See attached patch. I'm confused by this patch. Doesn't moving the diff call like that break the logic completely? regards, tom lane
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Christoph Berg <myon@debian.org> — 2019-01-03T09:39:17Z
Re: Peter Eisentraut 2019-01-02 <70440c81-37bb-76dd-e48b-b5a9550d5613@2ndquadrant.com> > Committed. \o/ > While we're considering the pg_regress output, what do you think about > replacing the ======... separator with a standard diff separator like > "diff %s %s %s\n". This would make the file behave more like a proper > diff file, for use with other tools. And it shows the diff options > used, for clarity. See attached patch. It will especially say which _alternate.out file was used, which seems like a big win. So +1. Christoph
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Daniel Gustafsson <daniel@yesql.se> — 2019-01-03T10:20:29Z
> On 3 Jan 2019, at 10:39, Christoph Berg <myon@debian.org> wrote: > > Re: Peter Eisentraut 2019-01-02 <70440c81-37bb-76dd-e48b-b5a9550d5613@2ndquadrant.com> >> While we're considering the pg_regress output, what do you think about >> replacing the ======... separator with a standard diff separator like >> "diff %s %s %s\n". This would make the file behave more like a proper >> diff file, for use with other tools. And it shows the diff options >> used, for clarity. See attached patch. > > It will especially say which _alternate.out file was used, which seems > like a big win. So +1. That has bitten more times than I’d like to admit, so definately +1 on being explicit about that. cheers ./daniel
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2019-01-03T11:02:47Z
On 02/01/2019 21:44, Tom Lane wrote: > Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: >> While we're considering the pg_regress output, what do you think about >> replacing the ======... separator with a standard diff separator like >> "diff %s %s %s\n". This would make the file behave more like a proper >> diff file, for use with other tools. And it shows the diff options >> used, for clarity. See attached patch. > > I'm confused by this patch. Doesn't moving the diff call like that > break the logic completely? For clarification, I have attached a "before" and "after". -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2019-01-03T11:16:25Z
On 03/01/2019 10:39, Christoph Berg wrote: > It will especially say which _alternate.out file was used, which seems > like a big win. So +1. It already shows that in the existing diff output header. Although if you have a really long absolute path, it might be hard to find it. So perhaps the attached patch to make it more readable. -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2019-02-15T14:16:00Z
On 2019-01-03 11:20, Daniel Gustafsson wrote: >> On 3 Jan 2019, at 10:39, Christoph Berg <myon@debian.org> wrote: >> >> Re: Peter Eisentraut 2019-01-02 <70440c81-37bb-76dd-e48b-b5a9550d5613@2ndquadrant.com> > >>> While we're considering the pg_regress output, what do you think about >>> replacing the ======... separator with a standard diff separator like >>> "diff %s %s %s\n". This would make the file behave more like a proper >>> diff file, for use with other tools. And it shows the diff options >>> used, for clarity. See attached patch. >> >> It will especially say which _alternate.out file was used, which seems >> like a big win. So +1. > > That has bitten more times than I’d like to admit, so definately +1 on being > explicit about that. committed (This might be one of those rare times where one hopes for a buildfarm failure for verification. :-) ) -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Andrew Gierth <andrew@tao11.riddles.org.uk> — 2019-02-15T14:25:10Z
>>>>> "Peter" == Peter Eisentraut <peter.eisentraut@2ndquadrant.com> writes: Peter> (This might be one of those rare times where one hopes for a Peter> buildfarm failure for verification. :-) ) Also while we're tweaking regression test output, would it be possible to have some indicator of whether a test passed because a variant file in the resultmap was ignored in favor of the standard result? The current system of silently ignoring the resultmap means that nobody ever notices when resultmap entries become obsolete.... -- Andrew (irc:RhodiumToad)
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Christoph Berg <myon@debian.org> — 2019-02-15T15:05:19Z
Re: Andrew Gierth 2019-02-15 <874l95m8w7.fsf@news-spur.riddles.org.uk> > Also while we're tweaking regression test output, would it be possible > to have some indicator of whether a test passed because a variant file > in the resultmap was ignored in favor of the standard result? > > The current system of silently ignoring the resultmap means that nobody > ever notices when resultmap entries become obsolete.... By the same argument, it should always print which variant file was used so determining which _N.out files are still in use is possible. Christoph
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2019-02-20T10:20:50Z
On 2019-01-03 12:16, Peter Eisentraut wrote: > On 03/01/2019 10:39, Christoph Berg wrote: >> It will especially say which _alternate.out file was used, which seems >> like a big win. So +1. > > It already shows that in the existing diff output header. > > Although if you have a really long absolute path, it might be hard to > find it. So perhaps the attached patch to make it more readable. Any objections to this change? -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Peter Eisentraut <peter.eisentraut@2ndquadrant.com> — 2019-02-20T10:22:23Z
On 2019-02-15 16:05, Christoph Berg wrote: > Re: Andrew Gierth 2019-02-15 <874l95m8w7.fsf@news-spur.riddles.org.uk> >> Also while we're tweaking regression test output, would it be possible >> to have some indicator of whether a test passed because a variant file >> in the resultmap was ignored in favor of the standard result? >> >> The current system of silently ignoring the resultmap means that nobody >> ever notices when resultmap entries become obsolete.... > > By the same argument, it should always print which variant file was > used so determining which _N.out files are still in use is possible. I would rather not overload the test output even more. A test passes or it doesn't. If we need to collect additional information, let's think about ways to do that separately. -- Peter Eisentraut http://www.2ndQuadrant.com/ PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services
-
Re: [HACKERS] Time to change pg_regress diffs to unified by default?
Christoph Berg <myon@debian.org> — 2019-02-20T11:47:01Z
Re: Peter Eisentraut 2019-02-20 <40c5c12f-adad-fc86-7d43-ff7c535356ed@2ndquadrant.com> > > By the same argument, it should always print which variant file was > > used so determining which _N.out files are still in use is possible. > > I would rather not overload the test output even more. A test passes or > it doesn't. If we need to collect additional information, let's think > about ways to do that separately. Aye. No objections. Christoph