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 3B9DA139337 for ; Sun, 1 Aug 2021 15:04:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61BA5E0891; Sun, 1 Aug 2021 15:04:09 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 40F40E0891 for ; Sun, 1 Aug 2021 15:04:09 +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 1124F343450 for ; Sun, 1 Aug 2021 15:04:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 71406823 for ; Sun, 1 Aug 2021 15:04:06 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1627830238.cb00482be7de85151b214897bc70bdbc5b04d28d.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libgudev/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libgudev/libgudev-236-r1.ebuild X-VCS-Directories: dev-libs/libgudev/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: cb00482be7de85151b214897bc70bdbc5b04d28d X-VCS-Branch: master Date: Sun, 1 Aug 2021 15:04: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: 7d0ba755-b20e-4362-992b-a921a4a79c5b X-Archives-Hash: 3c115b7cacc32c03b2f06f05dfc226f8 commit: cb00482be7de85151b214897bc70bdbc5b04d28d Author: Mike Gilbert gentoo org> AuthorDate: Sun Aug 1 15:02:15 2021 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Aug 1 15:03:58 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb00482b dev-libs/libgudev: set SANDBOX_ON=0 for testing libsandbox does not find any access violations, yet somehow causes testing to fail. Closes: https://bugs.gentoo.org/805449 Signed-off-by: Mike Gilbert gentoo.org> dev-libs/libgudev/libgudev-236-r1.ebuild | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/dev-libs/libgudev/libgudev-236-r1.ebuild b/dev-libs/libgudev/libgudev-236-r1.ebuild index 5c7b68a85f4..fc553df4242 100644 --- a/dev-libs/libgudev/libgudev-236-r1.ebuild +++ b/dev-libs/libgudev/libgudev-236-r1.ebuild @@ -44,3 +44,11 @@ multilib_src_configure() { ) meson_src_configure } + +src_test() { + # libsandbox interferes somehow. + # There are no access violations, but tests fail. + # https://bugs.gentoo.org/805449 + local -x SANDBOX_ON=0 + meson-multilib_src_test +}