From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1661069-garchives=archives.gentoo.org@lists.gentoo.org> 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 0BC8A159CAA for <garchives@archives.gentoo.org>; Mon, 12 Aug 2024 01:19:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 794B1E2B34; Mon, 12 Aug 2024 01:19:49 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5A002E2B34 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Aug 2024 01:19:49 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 604E4343103 for <gentoo-commits@lists.gentoo.org>; Mon, 12 Aug 2024 01:19:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EDEC21EDF for <gentoo-commits@lists.gentoo.org>; Mon, 12 Aug 2024 01:19:46 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1723425571.efff53996be8ae20f332867358fd1a3af83a1ee2.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: efff53996be8ae20f332867358fd1a3af83a1ee2 X-VCS-Branch: master Date: Mon, 12 Aug 2024 01:19:46 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: da5ae221-12d9-4613-ae1a-bda4823fb00b X-Archives-Hash: 2740ad461cc84cb6e39b0690ea487425 commit: efff53996be8ae20f332867358fd1a3af83a1ee2 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Mon Aug 12 01:10:10 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Aug 12 01:19:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efff5399 toolchain.eclass: drop filter-flags from src_test This no longer does anything after the previous commit to use custom variables for flags for tests. Signed-off-by: Sam James <sam <AT> gentoo.org> eclass/toolchain.eclass | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass index 326daf66586c..3cd3be676f9b 100644 --- a/eclass/toolchain.eclass +++ b/eclass/toolchain.eclass @@ -1926,19 +1926,6 @@ toolchain_src_test() { # Use a subshell to allow meddling with flags just for the testsuite ( - # Unexpected warnings confuse the tests. - filter-flags -W* - # May break parsing. - filter-flags '-fdiagnostics-color=*' '-fdiagnostics-urls=*' - # Gentoo QA flags which don't belong in tests - filter-flags -frecord-gcc-switches - filter-flags '-Wl,--defsym=__gentoo_check_ldflags__=0' - # Go doesn't support this and causes noisy warnings - filter-flags -Wbuiltin-declaration-mismatch - # The ASAN tests at least need LD_PRELOAD and the contract - # tests. - filter-flags -fno-semantic-interposition - # Workaround our -Wformat-security default which breaks # various tests as it adds unexpected warning output. GCC_TESTS_CFLAGS+=" -Wno-format-security -Wno-format"