Re: Non-portable shell code in pg_upgrade tap tests

From: Noah Misch <noah(at)leadboat(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Victor Wagner <vitus(at)wagner(dot)pp(dot)ru>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Non-portable shell code in pg_upgrade tap tests
Date: 2018-07-22 17:38:57
Message-ID: 20180722173857.GA3998719@rfd.leadboat.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Sun, Jul 22, 2018 at 10:46:03AM -0400, Tom Lane wrote:
> Noah Misch <noah(at)leadboat(dot)com> writes:
> > I'd say the right way to fix this is the one specified in
> > https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/The-Make-Macro-SHELL.html,
> > in particular:
>
> > Using @SHELL@ means that your makefile will benefit from the same improved
> > shell, such as bash or ksh, that was discovered during configure, so that
> > you aren't fighting two different sets of shell bugs between the two
> > contexts.
>
> The pg_upgrade makefile does in fact use $(SHELL), so it will default to
> whatever shell configure used.

It will not, because we don't set $(SHELL) anywhere. $(SHELL) is not @SHELL(at)(dot)
In our makefiles, $(SHELL) is always /bin/sh, the GNU make default.

> The bigger picture here is that it's worth maintaining a common coding
> style in this script. Randomly using `...` in some places and $(...)
> in others just increases the reader's cognitive load, as does spelling
> conditional blocks in multiple styles. So I'd have felt these changes
> were appropriate on style grounds even if there were no portability
> complaint.

For 986127e narrowly, I agree. However, I do want folks able to use $(...)
where it saves backslashes; that's more valuable than `...` uniformity. For
commit 0426932, as the comment above the changed code indicates, the
conditional blocks are copies of "configure" code. Consistency with their
source was more valuable than style, particularly since the code is
security-critical.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Christoph Berg 2018-07-22 18:49:51 Re: JIT breaks PostGIS
Previous Message a.bykov 2018-07-22 17:16:55 Re: pgbench-ycsb