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 4676D15808D for ; Tue, 19 Apr 2022 21:33:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70189E08E0; Tue, 19 Apr 2022 21:33:02 +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 548FFE08E0 for ; Tue, 19 Apr 2022 21:33:02 +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 4229E341B0E for ; Tue, 19 Apr 2022 21:33:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8918639F for ; Tue, 19 Apr 2022 21:32:59 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1650403912.74780679b37fc00aa39804d8cc3a90abf6e2c745.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/tests/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/tests/qmail.sh X-VCS-Directories: eclass/tests/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 74780679b37fc00aa39804d8cc3a90abf6e2c745 X-VCS-Branch: master Date: Tue, 19 Apr 2022 21:32:59 +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: d428c0cf-095e-47b6-bc95-59aad530c5f6 X-Archives-Hash: ad3f5b9eae29cc4d1efdad577f24fbe9 commit: 74780679b37fc00aa39804d8cc3a90abf6e2c745 Author: Mike Gilbert gentoo org> AuthorDate: Tue Apr 19 21:31:52 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Apr 19 21:31:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74780679 eclass/tests/qmail.sh: eend and return should be separate statements Closes: https://bugs.gentoo.org/839189 Signed-off-by: Mike Gilbert gentoo.org> eclass/tests/qmail.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/eclass/tests/qmail.sh b/eclass/tests/qmail.sh index 8cf0abdae1a6..16e52741c23c 100755 --- a/eclass/tests/qmail.sh +++ b/eclass/tests/qmail.sh @@ -13,7 +13,8 @@ test_low_numbers() { for i in $(seq 0 6); do if is_prime ${i}; then - return tend 1 "${i} badly accepted" + tend 1 "${i} badly accepted" + return fi done