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 34D2715806E for ; Sun, 28 May 2023 14:46:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57443E0845; Sun, 28 May 2023 14:46:18 +0000 (UTC) Received: from smtp.gentoo.org (dev.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3682EE0845 for ; Sun, 28 May 2023 14:46:18 +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 0839833BDF0 for ; Sun, 28 May 2023 14:46:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 49830A58 for ; Sun, 28 May 2023 14:46:15 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1685285172.70c5dbc9838e47fdd9be3ed31029c71d8f17475c.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/cpp-httplib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/cpp-httplib/cpp-httplib-0.12.4.ebuild X-VCS-Directories: dev-cpp/cpp-httplib/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 70c5dbc9838e47fdd9be3ed31029c71d8f17475c X-VCS-Branch: master Date: Sun, 28 May 2023 14:46:15 +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: 2d29bf86-7061-4d01-8bde-7f5d319b23c7 X-Archives-Hash: fa26bd8e1fc3829e740321d779036227 commit: 70c5dbc9838e47fdd9be3ed31029c71d8f17475c Author: Alexey Sokolov asokolov org> AuthorDate: Sun May 28 13:38:57 2023 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sun May 28 14:46:12 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c5dbc9 dev-cpp/cpp-httplib: only run offline tests Closes: https://bugs.gentoo.org/895520 Signed-off-by: Alexey Sokolov asokolov.org> Closes: https://github.com/gentoo/gentoo/pull/31201 Signed-off-by: Maciej Barć gentoo.org> dev-cpp/cpp-httplib/cpp-httplib-0.12.4.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.12.4.ebuild b/dev-cpp/cpp-httplib/cpp-httplib-0.12.4.ebuild index c9a985c777d7..d0d8042448a0 100644 --- a/dev-cpp/cpp-httplib/cpp-httplib-0.12.4.ebuild +++ b/dev-cpp/cpp-httplib/cpp-httplib-0.12.4.ebuild @@ -46,5 +46,5 @@ src_configure() { multilib_src_test() { cp -p -R --reflink=auto "${S}/test" ./test || die - emake -C test "CXX=$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -I." + GTEST_FILTER='-*.*_Online' emake -C test "CXX=$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} -I." }