Re: Getting started notes and trouble running the tests

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Kevin Burke <kevin(at)meter(dot)com>
Cc: pgsql-admin(at)lists(dot)postgresql(dot)org
Subject: Re: Getting started notes and trouble running the tests
Date: 2021-02-14 00:36:54
Message-ID: 1878104.1613263014@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Kevin Burke <kevin(at)meter(dot)com> writes:
> On Mac, I get this error when I run "./configure" and then "gmake check":

> [Output omitted]
> sh: line 1: 51711 Abort trap: 6 "psql" -X postgres < /dev/null 2>
> /dev/null

Yeah, this is a known issue with Apple's SIP (System Integrity Protection)
breaking our use of DYLD_LIBRARY_PATH to point the executables at the
as-yet-uninstalled libraries. The two known workarounds are
(1) do "make install" before "make check";
(2) turn off SIP.
We've made occasional efforts to develop a less fragile solution.
If you're interested in helping with the latest such effort, see

https://www.postgresql.org/message-id/flat/ecec88aa-c982-a473-1b0f-cea596d405cf(at)enterprisedb(dot)com

> Is there a way to run just the tests for a particular part of the code? The
> docs on running the tests weren't clear, and starting "gmake check" seems
> slow in the best case. In my case I'd like to run just the tests related to
> OpenSSL, and src/backend/libpq/be-secure.c.

The core regression tests aren't subdivided, but on the other hand
they only take a few seconds on any modern hardware (hint: use the
parallelized make targets). There are a lot of other test suites
scattered around the tree, and those can be run individually.
In your case I'd venture that "make check" in src/test/ssl/ might
cover most of what you care about (but see the README there for
caveats --- it transiently opens ports). Also, for repeated test runs,
using "make install" and then "make installcheck" can save time.

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Gregory Smith 2021-02-14 10:36:47 Re: index bloat estimation
Previous Message Kevin Burke 2021-02-13 23:52:05 Getting started notes and trouble running the tests