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) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B428015800F for ; Wed, 8 Feb 2023 06:12:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2283E07D1; Wed, 8 Feb 2023 06:12:53 +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 B2B72E07D0 for ; Wed, 8 Feb 2023 06:12:53 +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 6D34A340A12 for ; Wed, 8 Feb 2023 06:12:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B79A2531 for ; Wed, 8 Feb 2023 06:12:50 +0000 (UTC) From: "罗百科" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "罗百科" Message-ID: <1675836768.acd58628e878188a600e97402e731315751a199c.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/toybox/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/toybox/toybox-0.8.8.ebuild sys-apps/toybox/toybox-0.8.9.ebuild sys-apps/toybox/toybox-9999.ebuild X-VCS-Directories: sys-apps/toybox/ X-VCS-Committer: patrick X-VCS-Committer-Name: 罗百科 X-VCS-Revision: acd58628e878188a600e97402e731315751a199c X-VCS-Branch: master Date: Wed, 8 Feb 2023 06:12:50 +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: 9a7af942-d5ab-4a52-a5c9-095f25b006a1 X-Archives-Hash: c58502cdbaff11e62a4dac121c3688a1 commit: acd58628e878188a600e97402e731315751a199c Author: Patrick Lauer gentoo org> AuthorDate: Wed Feb 8 06:08:38 2023 +0000 Commit: 罗百科 gentoo org> CommitDate: Wed Feb 8 06:12:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acd58628 sys-apps/toybox: Fix tests Thanks to Rob Landley for pointing out that 'test' runs the single test called tests, and 'tests' runs all tests Signed-off-by: Patrick Lauer gentoo.org> sys-apps/toybox/toybox-0.8.8.ebuild | 4 ++-- sys-apps/toybox/toybox-0.8.9.ebuild | 2 +- sys-apps/toybox/toybox-9999.ebuild | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/sys-apps/toybox/toybox-0.8.8.ebuild b/sys-apps/toybox/toybox-0.8.8.ebuild index 01a70f0ff7e1..917c870334f9 100644 --- a/sys-apps/toybox/toybox-0.8.8.ebuild +++ b/sys-apps/toybox/toybox-0.8.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -49,7 +49,7 @@ src_compile() { } src_test() { - emake test + emake tests } src_install() { diff --git a/sys-apps/toybox/toybox-0.8.9.ebuild b/sys-apps/toybox/toybox-0.8.9.ebuild index d890b64c89af..2d47626cc148 100644 --- a/sys-apps/toybox/toybox-0.8.9.ebuild +++ b/sys-apps/toybox/toybox-0.8.9.ebuild @@ -53,7 +53,7 @@ src_compile() { } src_test() { - emake V=1 test + emake V=1 tests } src_install() { diff --git a/sys-apps/toybox/toybox-9999.ebuild b/sys-apps/toybox/toybox-9999.ebuild index d890b64c89af..2d47626cc148 100644 --- a/sys-apps/toybox/toybox-9999.ebuild +++ b/sys-apps/toybox/toybox-9999.ebuild @@ -53,7 +53,7 @@ src_compile() { } src_test() { - emake V=1 test + emake V=1 tests } src_install() {