BUG #8590: unlimit_core_size failed in `make check`.

From: noloader(at)gmail(dot)com
To: pgsql-bugs(at)postgresql(dot)org
Subject: BUG #8590: unlimit_core_size failed in `make check`.
Date: 2013-11-12 06:41:15
Message-ID: E1Vg7f1-000229-NX@wrigleys.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 8590
Logged by: Jeffrey Walton
Email address: noloader(at)gmail(dot)com
PostgreSQL version: 9.3.1
Operating system: Linux
Description:

>From Ubuntu 13.04, x64 running as std user.

$ make check
...

mkdir ./testtablespace
../../../src/test/regress/pg_regress --inputdir=. --temp-install=./tmp_check
--top-builddir=../../.. --dlpath=. --schedule=./parallel_schedule
pg_regress: could not set core size: disallowed by hard limit
============== creating temporary installation ==============
============== initializing database system ==============

Here's the line that generates the error message from pg_regress.c (circa
line 160):

getrlimit(RLIMIT_CORE, &lim);
if (lim.rlim_max == 0)
{
fprintf(stderr,
_("%s: could not set core size: disallowed by hard limit\n"),
progname);
return;
}

Sorry if this is a spurious. Searching for the message returned references
to source code; and not a bug report or mailing list message on the best way
to fix it for Postgres.

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2013-11-12 06:47:04 Re: BUG #8590: unlimit_core_size failed in `make check`.
Previous Message Pavel Stehule 2013-11-11 21:19:17 Re: Re: [BUGS] BUG #7873: pg_restore --clean tries to drop tables that don't exist