From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C698E1581D3 for ; Sat, 18 May 2024 15:32:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00907E2A50; Sat, 18 May 2024 15:32:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D9802E2A50 for ; Sat, 18 May 2024 15:32:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DC17B33BE32 for ; Sat, 18 May 2024 15:32:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 486A398E for ; Sat, 18 May 2024 15:32:22 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1716046334.11043c2d2f4efc455877e68380b711464d4b0d59.sam@gentoo> Subject: [gentoo-commits] proj/gentoo-functions:master commit in: / X-VCS-Repository: proj/gentoo-functions X-VCS-Files: test-functions X-VCS-Directories: / X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 11043c2d2f4efc455877e68380b711464d4b0d59 X-VCS-Branch: master Date: Sat, 18 May 2024 15:32:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0e8e4340-c119-4d57-833a-1b37999a86aa X-Archives-Hash: 942f76c3c698e12a3ee4acd1e05eb16e commit: 11043c2d2f4efc455877e68380b711464d4b0d59 Author: Kerin Millar plushkava net> AuthorDate: Sat May 18 14:46:26 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat May 18 15:32:14 2024 +0000 URL: https://gitweb.gentoo.org/proj/gentoo-functions.git/commit/?id=11043c2d test-functions: Fix invalid TAP output Quite rightly, meson complains about the output of the edo tests constituting invalid TAP. Since only the exit status matters, mute STDOUT for these particular tests. Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> test-functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-functions b/test-functions index 9414136..0dea9f3 100755 --- a/test-functions +++ b/test-functions @@ -118,7 +118,7 @@ test_edo() { callback() { shift test_description="edo $1" - ( edo "$1" ) + ( edo "$1" >/dev/null ) } iterate_tests 3 "$@"