Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Michael Glaesemann
On Sep 9, 2004, at 6:27 AM, Tom Lane wrote:
David Fetter <[EMAIL PROTECTED]> writes:
Lately (past 3 days or so, but I don't know exactly how far back this
goes), I've been getting some regression test failures for geometry
with CVS HEAD on OS/X.  Here is regression.diffs.
OS X has been doing that since 10.3.something.  I've been thinking of
installing a variant geometry file but it's a bit annoying to do so
for just one platform, especially since I have no idea when Apple might
revert back to more standard behavior ...
Is this documented somewhere? If it's not, could it be? I was one of 
those who reported this same failure a while back (May 30 for 10.3.4, 
Aug 10 for 10.3.5). I didn't get a response to either post and was 
wondering if I had screwed up my system somehow :)

Michael Glaesemann
grzm myrealbox com
---(end of broadcast)---
TIP 8: explain analyze is your friend


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Gaetano Mendola
Andrew Dunstan wrote:

David Fetter wrote:
Kind people,
Lately (past 3 days or so, but I don't know exactly how far back this
goes), I've been getting some regression test failures for geometry
with CVS HEAD on OS/X.
 

We have seen a number of reports recently of things broken some time in 
the past. As I am currently thinking about what I want to do in the next 
dev cycle, this might be an opportune time for me to raise again my 
previous suggestion of a distributed build farm, so we get timely and 
automated warnings of breakage. I started creating a script to do this, 
but got sidetracked onto more important things (like Windows stuff, CSV, 
dollar quoting), but I am prepared to restart the effort if enough 
people are interested. Essentially, this would involve installation of a 
perl script to be run from cron (or Windows equivalent - automating the 
build for Windows might be challenging ...), which would check out code 
from CVS, run "configure; make check" and then send  the results to a 
central URL. Centrally, we would store the results and have a summary 
page, with access to full logs if necessary in case of errors.

How we classify the results is also an open question. So far my thoughts 
are to classify by .

Thoughts?
This can be a good model to follow:
http://boost.sourceforge.net/regression-logs/


Regards
Gaetano Mendola


---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Andrew Dunstan

Tom Lane wrote:
Andrew Dunstan <[EMAIL PROTECTED]> writes:
 

We have seen a number of reports recently of things broken some time in 
the past. As I am currently thinking about what I want to do in the next 
dev cycle, this might be an opportune time for me to raise again my 
previous suggestion of a distributed build farm, so we get timely and 
automated warnings of breakage.
   

I think everyone thought that was a fine idea ...
 

OK, will work on it.
cheers
andrew
---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Tom Lane
Andrew Dunstan <[EMAIL PROTECTED]> writes:
> We have seen a number of reports recently of things broken some time in 
> the past. As I am currently thinking about what I want to do in the next 
> dev cycle, this might be an opportune time for me to raise again my 
> previous suggestion of a distributed build farm, so we get timely and 
> automated warnings of breakage.

I think everyone thought that was a fine idea ...

regards, tom lane

---(end of broadcast)---
TIP 6: Have you searched our list archives?

   http://archives.postgresql.org


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Tom Lane
David Fetter <[EMAIL PROTECTED]> writes:
> Lately (past 3 days or so, but I don't know exactly how far back this
> goes), I've been getting some regression test failures for geometry
> with CVS HEAD on OS/X.  Here is regression.diffs.

OS X has been doing that since 10.3.something.  I've been thinking of
installing a variant geometry file but it's a bit annoying to do so
for just one platform, especially since I have no idea when Apple might
revert back to more standard behavior ...

regards, tom lane

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Andrew Dunstan

David Fetter wrote:
As I am currently thinking about what I want to do in the next dev
cycle, this might be an opportune time for me to raise again my
previous suggestion of a distributed build farm, so we get timely
and automated warnings of breakage. I started creating a script to
do this, but got sidetracked onto more important things (like
Windows stuff, CSV, dollar quoting), but I am prepared to restart
the effort if enough people are interested. Essentially, this would
involve installation of a perl script to be run from cron (or
Windows equivalent - automating the build for Windows might be
challenging ...), which would check out code from CVS, run
"configure; make check" and then send  the results to a central URL.
Centrally, we would store the results and have a summary page, with
access to full logs if necessary in case of errors.
   

 

How we classify the results is also an open question. So far my
thoughts are to classify by .
Thoughts?
   

That'd be great!  I seem to recall that bison/(f)lex versions can
cause issues, too.  Could these just be tested for beforehand?
reported in any compile report?  Should names & versions of other
tools or libraries come along?  If so, how?
 

Should not be necessary, at least for bison/flex - configure already 
checks that you have acceptable versions of these. If there is a failure 
due to them it should show up clearly in the logs.

Perhaps version info for other 3rd party things, like perl, python, tcl, 
kerberos, openssl would be useful. I'm wary of collecting too much info, 
though. Most compile failures seem to be traceable to OS/Arch/Compiler 
issues.

cheers
andrew
---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
   (send "unregister YourEmailAddressHere" to [EMAIL PROTECTED])


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread David Fetter
On Wed, Sep 08, 2004 at 04:20:11PM -0400, Andrew Dunstan wrote:
> 
> 
> David Fetter wrote:
> 
> >Kind people,
> >
> >Lately (past 3 days or so, but I don't know exactly how far back
> >this goes), I've been getting some regression test failures for
> >geometry with CVS HEAD on OS/X. 
> 
> We have seen a number of reports recently of things broken some time
> in the past.

Sorry not to have provided better timing info. :/

> As I am currently thinking about what I want to do in the next dev
> cycle, this might be an opportune time for me to raise again my
> previous suggestion of a distributed build farm, so we get timely
> and automated warnings of breakage. I started creating a script to
> do this, but got sidetracked onto more important things (like
> Windows stuff, CSV, dollar quoting), but I am prepared to restart
> the effort if enough people are interested. Essentially, this would
> involve installation of a perl script to be run from cron (or
> Windows equivalent - automating the build for Windows might be
> challenging ...), which would check out code from CVS, run
> "configure; make check" and then send  the results to a central URL.
> Centrally, we would store the results and have a summary page, with
> access to full logs if necessary in case of errors.

> How we classify the results is also an open question. So far my
> thoughts are to classify by .
> 
> Thoughts?

That'd be great!  I seem to recall that bison/(f)lex versions can
cause issues, too.  Could these just be tested for beforehand?
reported in any compile report?  Should names & versions of other
tools or libraries come along?  If so, how?

Cheers,
D
-- 
David Fetter [EMAIL PROTECTED] http://fetter.org/
phone: +1 510 893 6100   mobile: +1 415 235 3778

Remember to vote!

---(end of broadcast)---
TIP 7: don't forget to increase your free space map settings


Re: [HACKERS] Geometry regression test failure, CVS HEAD, Mac OS/X

2004-09-08 Thread Andrew Dunstan

David Fetter wrote:
Kind people,
Lately (past 3 days or so, but I don't know exactly how far back this
goes), I've been getting some regression test failures for geometry
with CVS HEAD on OS/X. 

 

We have seen a number of reports recently of things broken some time in 
the past. As I am currently thinking about what I want to do in the next 
dev cycle, this might be an opportune time for me to raise again my 
previous suggestion of a distributed build farm, so we get timely and 
automated warnings of breakage. I started creating a script to do this, 
but got sidetracked onto more important things (like Windows stuff, CSV, 
dollar quoting), but I am prepared to restart the effort if enough 
people are interested. Essentially, this would involve installation of a 
perl script to be run from cron (or Windows equivalent - automating the 
build for Windows might be challenging ...), which would check out code 
from CVS, run "configure; make check" and then send  the results to a 
central URL. Centrally, we would store the results and have a summary 
page, with access to full logs if necessary in case of errors.

How we classify the results is also an open question. So far my thoughts 
are to classify by .

Thoughts?
cheers
andrew

---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]