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 06662158094 for ; Mon, 8 Aug 2022 06:29:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 160AEE08F1; Mon, 8 Aug 2022 06:29:14 +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 B17D0E08F1 for ; Mon, 8 Aug 2022 06:29:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 957F9340ECD for ; Mon, 8 Aug 2022 06:29:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B279448 for ; Mon, 8 Aug 2022 06:29:11 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1659940118.da7811f7dd5df86c1361aca176bd8a62905d52ab.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jctools-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jctools-core/jctools-core-3.3.0.ebuild X-VCS-Directories: dev-java/jctools-core/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: da7811f7dd5df86c1361aca176bd8a62905d52ab X-VCS-Branch: master Date: Mon, 8 Aug 2022 06:29:11 +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: 59fb46bb-155e-462a-8d2b-b5f6222e7495 X-Archives-Hash: 4a92d912f68f982427b89684810ec9ef commit: da7811f7dd5df86c1361aca176bd8a62905d52ab Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Sat Aug 6 15:51:59 2022 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Aug 8 06:28:38 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da7811f7 dev-java/jctools-core: exclude two more test classes Excluding two test classes producing TestTimedOutException on arm64: - org.jctools.queues.atomic.AtomicMpqSanityTestMpscLinked - org.jctools.queues.MpqSanityTestMpscLinked org.junit.runners.model.TestTimedOutException: test timed out after 30000 milliseconds Closes: https://bugs.gentoo.org/863977 Closes: https://github.com/gentoo/gentoo/pull/26758 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Signed-off-by: Florian Schmaus gentoo.org> dev-java/jctools-core/jctools-core-3.3.0.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dev-java/jctools-core/jctools-core-3.3.0.ebuild b/dev-java/jctools-core/jctools-core-3.3.0.ebuild index 2e1511ad7f9c..d3809d348b60 100644 --- a/dev-java/jctools-core/jctools-core-3.3.0.ebuild +++ b/dev-java/jctools-core/jctools-core-3.3.0.ebuild @@ -46,6 +46,9 @@ src_test() { # "org.jctools.queues.QueueSanityTest" # "org.jctools.queues.ScQueueRemoveTest" # "org.jctools.util.TestUtil" + # Test timeout on arm64, https://bugs.gentoo.org/863977 + # "org.jctools.queues.atomic.AtomicMpqSanityTestMpscLinked" + # "org.jctools.queues.MpqSanityTestMpscLinked" pushd src/test/java || die local JAVA_TEST_RUN_ONLY=$(find * \ \( -name "*Test*.java" \ @@ -55,6 +58,8 @@ src_test() { ! -name "QueueSanityTest.java" \ ! -name "ScQueueRemoveTest.java" \ ! -name "TestUtil.java" \ + ! -name "AtomicMpqSanityTestMpscLinked.java" \ + ! -name "MpqSanityTestMpscLinked.java" \ ) popd JAVA_TEST_RUN_ONLY="${JAVA_TEST_RUN_ONLY//.java}"