Re: Add .NOTPARALLEL to contrib/Makefile

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Andres Freund <andres(at)2ndquadrant(dot)com>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: Add .NOTPARALLEL to contrib/Makefile
Date: 2014-08-26 00:16:50
Message-ID: 24650.1409012210@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Andres Freund <andres(at)2ndquadrant(dot)com> writes:
> Currently running "make -j16 all check" in contrib/ results in a mess because
> all pg_regress invocations fight over the same port. Adding a simple
> .NOTPARALLEL: check-%-recurse
> into contrib/Makefile fixes that. Do we want that?

Dunno, but if we do, it should be applied to installcheck as well.
(In that case the fight is over the contrib_regression database.)

A larger point is that you shouldn't really fix this only for contrib.
What about tests run in src/pl, or contrib vs the main regression tests
vs src/pl vs test/isolationtester, etc etc.

regards, tom lane

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andrew Gierth 2014-08-26 00:45:40 Re: Final Patch for GROUPING SETS
Previous Message Andres Freund 2014-08-26 00:05:43 Add .NOTPARALLEL to contrib/Makefile