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 4A96515834D for ; Mon, 1 Jul 2024 02:10:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 09CC4E29F4; Mon, 1 Jul 2024 02:10:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E1437E29F4 for ; Mon, 1 Jul 2024 02:10:07 +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 45400340BEF for ; Mon, 1 Jul 2024 02:10:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5388F1DA0 for ; Mon, 1 Jul 2024 02:10:04 +0000 (UTC) From: "Anna Vyalkova" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anna Vyalkova" Message-ID: <1719797213.3febea914acb9eb5f036b2313916f20b6cd6d1a7.cybertailor@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: eclass/ X-VCS-Repository: repo/proj/guru X-VCS-Files: eclass/nimble.eclass X-VCS-Directories: eclass/ X-VCS-Committer: cybertailor X-VCS-Committer-Name: Anna Vyalkova X-VCS-Revision: 3febea914acb9eb5f036b2313916f20b6cd6d1a7 X-VCS-Branch: dev Date: Mon, 1 Jul 2024 02:10:04 +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: 1980acea-6b67-46a2-b69b-8ce87a534a60 X-Archives-Hash: fe8461aa39134fc375a2dcfa304759b3 commit: 3febea914acb9eb5f036b2313916f20b6cd6d1a7 Author: Anna (cybertailor) Vyalkova sysrq in> AuthorDate: Mon Jul 1 01:26:53 2024 +0000 Commit: Anna Vyalkova sysrq in> CommitDate: Mon Jul 1 01:26:53 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3febea91 nimble.eclass: fix tests dry-run Signed-off-by: Anna (cybertailor) Vyalkova sysrq.in> eclass/nimble.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eclass/nimble.eclass b/eclass/nimble.eclass index 2fa48b48f..affe3cb58 100644 --- a/eclass/nimble.eclass +++ b/eclass/nimble.eclass @@ -178,7 +178,7 @@ nimble_src_compile() { nimble_src_test() { debug-print-function ${FUNCNAME} "${@}" - if nonfatal nimble_build test -n &> /dev/null; then + if nonfatal nimble_build -n test &> /dev/null; then nimble_build test "${@}" fi }