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 2A24B1382C5 for ; Tue, 6 Apr 2021 01:00:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D5757E0871; Tue, 6 Apr 2021 01:00:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 A6042E0871 for ; Tue, 6 Apr 2021 01:00:07 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 31A6C340D72 for ; Tue, 6 Apr 2021 01:00:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 203E24C6 for ; Tue, 6 Apr 2021 01:00:04 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1617669152.4c89f2af812199dd9e8726a566d776a161a97ed2.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/librdkafka/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/librdkafka/librdkafka-1.6.1.ebuild X-VCS-Directories: dev-libs/librdkafka/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 4c89f2af812199dd9e8726a566d776a161a97ed2 X-VCS-Branch: master Date: Tue, 6 Apr 2021 01:00:04 +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: b71e2161-5df0-490d-aaee-f4c7534fae5b X-Archives-Hash: 6d07d3d66f60a6f707c8d4a3b98f2698 commit: 4c89f2af812199dd9e8726a566d776a161a97ed2 Author: Thomas Deutschmann gentoo org> AuthorDate: Tue Apr 6 00:32:32 2021 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Tue Apr 6 00:32:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c89f2af dev-libs/librdkafka: run tests in CI mode Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Thomas Deutschmann gentoo.org> dev-libs/librdkafka/librdkafka-1.6.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-libs/librdkafka/librdkafka-1.6.1.ebuild b/dev-libs/librdkafka/librdkafka-1.6.1.ebuild index 01faa8bf266..adb3cb591b2 100644 --- a/dev-libs/librdkafka/librdkafka-1.6.1.ebuild +++ b/dev-libs/librdkafka/librdkafka-1.6.1.ebuild @@ -78,6 +78,10 @@ src_configure() { } src_test() { + # Simulate CI so we do not fail when tests are running longer than expected, + # https://github.com/edenhill/librdkafka/blob/v1.6.1/tests/0062-stats_event.c#L101-L116 + local -x CI=true + emake -C tests run_local }