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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id CB66D1581D8 for ; Mon, 18 Nov 2024 11:11:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4392E0AC9; Mon, 18 Nov 2024 11:11:26 +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 8AA27E0AC9 for ; Mon, 18 Nov 2024 11:11:26 +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 92FFB340DE6 for ; Mon, 18 Nov 2024 11:11:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 03BC51A9D for ; Mon, 18 Nov 2024 11:11:24 +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: <1731928260.8ff6b44d29f8bbd4b3c3970af11d0ea3aebb2ca6.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: 8ff6b44d29f8bbd4b3c3970af11d0ea3aebb2ca6 X-VCS-Branch: master Date: Mon, 18 Nov 2024 11:11:24 +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: b3885aa2-dc53-4a82-8e4f-6f5c3ba6a9e6 X-Archives-Hash: c71ff1f9700c551701f099a8634b89ea commit: 8ff6b44d29f8bbd4b3c3970af11d0ea3aebb2ca6 Author: Sam James gentoo org> AuthorDate: Mon Nov 18 11:09:01 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Nov 18 11:11:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff6b44d toolchain.eclass: drop -g for src_test I was seriously mistaken on this: `1 file changed, 2228 deletions(-)` when testing dropping it. -g ultimately causes many more matches because of debug statements and it confuses so many tests. I must have just made an error when testing other big test flag changes around the time. This reverts commit 7200aecb3db3b2dd91129e1530bcb75ce096af91. Signed-off-by: Sam James gentoo.org> eclass/toolchain.eclass | 4 ---- 1 file changed, 4 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index deedb1867816..f131da7dbd68 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -2270,10 +2270,6 @@ toolchain_src_test() { GCC_TESTS_CFLAGS+=" -fno-stack-clash-protection" GCC_TESTS_CXXFLAGS+=" -fno-stack-clash-protection" - # configure defaults to '-O2 -g' and some tests expect it - # accordingly. - GCC_TESTS_CFLAGS+=" -g" - # TODO: Does this handle s390 (-m31) correctly? # TODO: What if there are multiple ABIs like x32 too? # XXX: Disabled until validate_failures.py can handle 'variants'