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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0D505158F56 for ; Tue, 17 Aug 2021 01:41:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5318EE0391; Tue, 17 Aug 2021 01:41:32 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 31EAAE0391 for ; Tue, 17 Aug 2021 01:41:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 25E8F335DA8 for ; Tue, 17 Aug 2021 01:41:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 978044A2 for ; Tue, 17 Aug 2021 01:41:29 +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: <1629164474.ed3440a766d1d06282db32de0273e53ac7d74da9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/c-ares/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/c-ares/c-ares-1.17.2.ebuild X-VCS-Directories: net-dns/c-ares/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ed3440a766d1d06282db32de0273e53ac7d74da9 X-VCS-Branch: master Date: Tue, 17 Aug 2021 01:41:29 +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: bcee1f74-e1ed-4130-bb12-0fc97334d7e6 X-Archives-Hash: ea85eeefd5560f960251f31744bbcb54 commit: ed3440a766d1d06282db32de0273e53ac7d74da9 Author: Sam James gentoo org> AuthorDate: Tue Aug 17 01:37:37 2021 +0000 Commit: Sam James gentoo org> CommitDate: Tue Aug 17 01:41:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed3440a7 net-dns/c-ares: skip network tests Closes: https://bugs.gentoo.org/807649 Signed-off-by: Sam James gentoo.org> net-dns/c-ares/c-ares-1.17.2.ebuild | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/net-dns/c-ares/c-ares-1.17.2.ebuild b/net-dns/c-ares/c-ares-1.17.2.ebuild index 8a95c494c5e..dd99e46267e 100644 --- a/net-dns/c-ares/c-ares-1.17.2.ebuild +++ b/net-dns/c-ares/c-ares-1.17.2.ebuild @@ -40,7 +40,19 @@ multilib_src_test() { # We're skipping the "real" network tests with the filter # see https://github.com/c-ares/c-ares/tree/main/test - ./arestest --gtest_filter=-*Live* || die "arestest failed!" + local network_tests=( + # Most live tests have Live in the name + *Live* + # These don't but are still in ares-test-live.cc => live + *GetTCPSock* + *TimeoutValue* + *GetSock* + *GetSock_virtualized* + ) + + # The format for disabling test1, test2, and test3 looks like: + # -test1:test2:test3 + ./arestest --gtest_filter=-$(echo $(IFS=:; echo "${network_tests[*]}")) || die "arestest failed!" } multilib_src_install_all() {