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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D4E8515806E for ; Tue, 30 May 2023 05:28:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0DE17E0EE4; Tue, 30 May 2023 05:28:49 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E4661E0EE4 for ; Tue, 30 May 2023 05:28:48 +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 09D983411B8 for ; Tue, 30 May 2023 05:28:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 97222A7F for ; Tue, 30 May 2023 05:28:46 +0000 (UTC) From: "Viorel Munteanu" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Viorel Munteanu" Message-ID: <1685396312.8b140d464ca6103bc8de626b56ba2a57bb219da6.ceamac@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-ruby/rbspy/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-ruby/rbspy/rbspy-0.17.0-r1.ebuild dev-ruby/rbspy/rbspy-0.17.0.ebuild X-VCS-Directories: dev-ruby/rbspy/ X-VCS-Committer: ceamac X-VCS-Committer-Name: Viorel Munteanu X-VCS-Revision: 8b140d464ca6103bc8de626b56ba2a57bb219da6 X-VCS-Branch: master Date: Tue, 30 May 2023 05:28:46 +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: 443628ea-4b8f-4df2-a425-db119abf48d0 X-Archives-Hash: c41b8f7447cd16b0bddc8e85ce1d710b commit: 8b140d464ca6103bc8de626b56ba2a57bb219da6 Author: Alexey Zapparov zapparov com> AuthorDate: Mon May 29 21:34:10 2023 +0000 Commit: Viorel Munteanu gentoo org> CommitDate: Mon May 29 21:38:32 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8b140d46 dev-ruby/rbspy: Disable failing tests These tests require root priviledges to run properly. Signed-off-by: Alexey Zapparov zapparov.com> .../rbspy/{rbspy-0.17.0.ebuild => rbspy-0.17.0-r1.ebuild} | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/dev-ruby/rbspy/rbspy-0.17.0.ebuild b/dev-ruby/rbspy/rbspy-0.17.0-r1.ebuild similarity index 91% rename from dev-ruby/rbspy/rbspy-0.17.0.ebuild rename to dev-ruby/rbspy/rbspy-0.17.0-r1.ebuild index 43d1f2e0c..82ba2aaf1 100644 --- a/dev-ruby/rbspy/rbspy-0.17.0.ebuild +++ b/dev-ruby/rbspy/rbspy-0.17.0-r1.ebuild @@ -202,8 +202,18 @@ PATCHES=( "${FILESDIR}/${P}-remove-time-dependency.patch" ) +src_test() { + local skip=( + --skip sampler::tests::test_sample_single_process + --skip sampler::tests::test_sample_single_process_with_time_limit + --skip core::ruby_spy::tests::test_get_trace_when_process_has_exited + --skip core::ruby_spy::tests::test_get_trace + --skip sampler::tests::test_sample_subprocesses + ) + cargo_src_test -- "${skip[@]}" +} + src_install() { cargo_src_install - dodoc README.md }