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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0E95C15802C for ; Tue, 17 Dec 2024 20:46:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E50EE080E; Tue, 17 Dec 2024 20:46:12 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A83FAE080E for ; Tue, 17 Dec 2024 20:46:11 +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 8CF1F335DC5 for ; Tue, 17 Dec 2024 20:46:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 93E0416A1 for ; Tue, 17 Dec 2024 20:46:08 +0000 (UTC) From: "Jonas Frei" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jonas Frei" Message-ID: <1734468094.5ba3021fb154d634f7f6a43b163063a642453ba3.freijon@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-db/limbo/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-db/limbo/limbo-0.0.9.ebuild X-VCS-Directories: dev-db/limbo/ X-VCS-Committer: freijon X-VCS-Committer-Name: Jonas Frei X-VCS-Revision: 5ba3021fb154d634f7f6a43b163063a642453ba3 X-VCS-Branch: dev Date: Tue, 17 Dec 2024 20:46:08 +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: f13f9a4b-91fd-43a5-8184-825bd1af08af X-Archives-Hash: 1f80ddd824e277dd47c7bbed753c4fde commit: 5ba3021fb154d634f7f6a43b163063a642453ba3 Author: Jonas Frei pm me> AuthorDate: Tue Dec 17 20:41:34 2024 +0000 Commit: Jonas Frei pm me> CommitDate: Tue Dec 17 20:41:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5ba3021f dev-db/limbo: Enable backtrace in src_test for CI debugging Close bug to re-trigger CI to see new output in new bug. Closes: https://bugs.gentoo.org/946511 Signed-off-by: Jonas Frei pm.me> dev-db/limbo/limbo-0.0.9.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-db/limbo/limbo-0.0.9.ebuild b/dev-db/limbo/limbo-0.0.9.ebuild index 489c01b14..0640dd639 100644 --- a/dev-db/limbo/limbo-0.0.9.ebuild +++ b/dev-db/limbo/limbo-0.0.9.ebuild @@ -316,3 +316,8 @@ src_install() { einstalldocs } + +src_test() { + export RUST_BACKTRACE=full + cargo_src_test +}