Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1njWuK-0004l1-2Z for pgsql-hackers@arkaria.postgresql.org; Wed, 27 Apr 2022 01:55:56 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.92) (envelope-from ) id 1njWuI-0005yO-Ui for pgsql-hackers@arkaria.postgresql.org; Wed, 27 Apr 2022 01:55:54 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1njWuI-0005y6-LZ for pgsql-hackers@lists.postgresql.org; Wed, 27 Apr 2022 01:55:54 +0000 Received: from sss.pgh.pa.us ([66.207.139.130]) by makus.postgresql.org with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1njWuG-0004cX-Dn for pgsql-hackers@lists.postgresql.org; Wed, 27 Apr 2022 01:55:53 +0000 Received: from sss1.sss.pgh.pa.us (localhost [127.0.0.1]) by sss.pgh.pa.us (8.15.2/8.15.2) with ESMTP id 23R1toHu296911; Tue, 26 Apr 2022 21:55:50 -0400 From: Tom Lane To: Thomas Munro cc: Michael Paquier , Noah Misch , Jeff Davis , Postgres hackers Subject: Re: pgsql: Add contrib/pg_walinspect. In-reply-to: References: <171769.1650950714@sss.pgh.pa.us> <287795.1651019129@sss.pgh.pa.us> Comments: In-reply-to Thomas Munro message dated "Wed, 27 Apr 2022 13:10:50 +1200" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <296909.1651024550.1@sss.pgh.pa.us> Content-Transfer-Encoding: quoted-printable Date: Tue, 26 Apr 2022 21:55:50 -0400 Message-ID: <296910.1651024550@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Thomas Munro writes: > On Wed, Apr 27, 2022 at 12:25 PM Tom Lane wrote: >> Not sure what we're doing differently, but plain "make check" in >> contrib/pg_walinspect fails pretty consistently for me on gcc23. >> I tried it again just now and got five failures in five attempts. > I tried on the /home filesystem (a slow NFS mount) and then inside a > directory on /tmp to get ext4 (I saw that Noah had somehow got onto a > local filesystem, based on the present of "ext4" in the pathname and I > was trying everything I could think of). I used what I thought might > be some relevant starter configure options copied from the animal: > ./configure --prefix=3D$HOME/install --enable-cassert --enable-debug > --enable-tap-tests CC=3D"ccache gcc -mips32r2" CFLAGS=3D"-O2 > -funwind-tables" LDFLAGS=3D"-rdynamic" Hmph. I'm also running it on the /home filesystem, and I used these settings: export CC=3D"ccache gcc -mips32r2" export CFLAGS=3D"-O2 -funwind-tables" export LDFLAGS=3D"-rdynamic" ./configure --enable-debug --enable-cassert --with-systemd --enable-nls --= with-icu --enable-tap-tests --with-system-tzdata=3D/usr/share/zoneinfo plus uninteresting stuff like --prefix. Now maybe some of these other options affect this, but I'd be pretty surprised if so. So I'm at a loss why it behaves differently for you. regards, tom lane