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 615CA159C9B for ; Wed, 7 Aug 2024 09:41:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9B23BE2B0F; Wed, 7 Aug 2024 09:41:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 76FDFE2B0F for ; Wed, 7 Aug 2024 09:41:08 +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 C01CD340BDE for ; Wed, 7 Aug 2024 09:41:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 25A651DCA for ; Wed, 7 Aug 2024 09:41:06 +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: <1723023627.60bbe4613834d198e3969ce9ffb6124212b53c41.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/toolchain.eclass X-VCS-Directories: eclass/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 60bbe4613834d198e3969ce9ffb6124212b53c41 X-VCS-Branch: master Date: Wed, 7 Aug 2024 09:41:06 +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: aee0a7ef-00b8-4411-a347-82fe35be38da X-Archives-Hash: cdff55b963761f2db4e3d725662cf88f commit: 60bbe4613834d198e3969ce9ffb6124212b53c41 Author: Sam James gentoo org> AuthorDate: Wed Aug 7 09:40:27 2024 +0000 Commit: Sam James gentoo org> CommitDate: Wed Aug 7 09:40:27 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60bbe461 toolchain.eclass: fix typos w/ RUNTESTFLAGS Fixes: 7eab20a224f411ef2660f4fecae22e28cad711e7 Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 106939bfdeb5..e81116973c67 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1948,10 +1948,10 @@ toolchain_src_test() { filter-flags -Wbuiltin-declaration-mismatch local suppress_warn="/-Wno-format/-Wno-format-security/-Wno-trampolines" - RUNTESTFLAGS+=" --target_board=unix\{${suppress_warn}" + GCC_TESTS_RUNTESTFLAGS+=" --target_board=unix\{${suppress_warn}" # TODO: Does this handle s390 (-m31) correctly? - is_multilib && GCC_TESTS_RUNTESTFLAGS+=" ,-m32/${suppress_warn}" - RUNTESTFLAGS+="\}" + is_multilib && GCC_TESTS_RUNTESTFLAGS+=",-m32/${suppress_warn}" + GCC_TESTS_RUNTESTFLAGS+="\}" # nonfatal here as we die if the comparison below fails. Also, note that # the exit code of targets other than 'check' may be unreliable.