Received: from malur.postgresql.org ([217.196.149.56]) by arkaria.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ukQSw-002BVq-40 for pgsql-committers@arkaria.postgresql.org; Fri, 08 Aug 2025 17:01:14 +0000 Received: from localhost ([127.0.0.1] helo=malur.postgresql.org) by malur.postgresql.org with esmtp (Exim 4.94.2) (envelope-from ) id 1ukQSt-00EywJ-My for pgsql-committers@arkaria.postgresql.org; Fri, 08 Aug 2025 17:01:11 +0000 Received: from makus.postgresql.org ([2001:4800:3e1:1::229]) by malur.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ukQSt-00EywB-G1 for pgsql-committers@lists.postgresql.org; Fri, 08 Aug 2025 17:01:11 +0000 Received: from sss.pgh.pa.us ([68.162.161.243]) by makus.postgresql.org with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1ukQSq-001QOB-2N for pgsql-committers@lists.postgresql.org; Fri, 08 Aug 2025 17:01:10 +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 578H17tP1873918; Fri, 8 Aug 2025 13:01:07 -0400 From: Tom Lane To: Jacob Champion cc: pgsql-committers@lists.postgresql.org Subject: Re: pgsql: oauth: Add unit tests for multiplexer handling In-reply-to: References: <1871198.1754671345@sss.pgh.pa.us> Comments: In-reply-to Jacob Champion message dated "Fri, 08 Aug 2025 09:50:28 -0700" MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-ID: <1873916.1754672467.1@sss.pgh.pa.us> Date: Fri, 08 Aug 2025 13:01:07 -0400 Message-ID: <1873917.1754672467@sss.pgh.pa.us> List-Id: List-Help: List-Subscribe: List-Post: List-Owner: List-Archive: Archived-At: Precedence: bulk Jacob Champion writes: > Before this commit, there was no t/ directory to get caught by the > buildfarm. We've had to work around this in past, it looks like: >> next if $testname =~ /ssl/ && !$using_ssl; Yeah, that's a horrid kluge. The makefiles themselves ought to short-circuit building the test program. I think the issue is that we apply that short-circuit at the next makefile level up --- can we do it in src/interfaces/libpq-oauth/Makefile itself? regards, tom lane