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

Поиск
Список
Период
Сортировка
От noloader@gmail.com
Тема BUG #8590: unlimit_core_size failed in `make check`.
Дата
Msg-id E1Vg7f1-000229-NX@wrigleys.postgresql.org
обсуждение исходный текст
Ответы Re: BUG #8590: unlimit_core_size failed in `make check`.
Список pgsql-bugs
The following bug has been logged on the website:

Bug reference:      8590
Logged by:          Jeffrey Walton
Email address:      noloader@gmail.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.

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Jeffrey Walton
Дата:
Сообщение: Re: BUG #8588: Need work arounds for Apple unaligned access
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #8590: unlimit_core_size failed in `make check`.