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 808861581EC for ; Sat, 23 Nov 2024 14:01:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EEAC7E0870; Sat, 23 Nov 2024 14:01:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 7AE25E0870 for ; Sat, 23 Nov 2024 14:01:43 +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 F2F5F340BEF for ; Sat, 23 Nov 2024 14:01:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 82BDD1B55 for ; Sat, 23 Nov 2024 14:01:36 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1732370457.0856b6850c6326950e69d8490f10307b38a29f59.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/folly/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/folly/folly-2024.11.04.00-r1.ebuild X-VCS-Directories: dev-cpp/folly/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 0856b6850c6326950e69d8490f10307b38a29f59 X-VCS-Branch: master Date: Sat, 23 Nov 2024 14:01:36 +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: db758baa-bce4-4693-bb9a-81b424331b63 X-Archives-Hash: 11eaf12fde077f42d0563b0d3847e13a commit: 0856b6850c6326950e69d8490f10307b38a29f59 Author: sin-ack protonmail com> AuthorDate: Wed Nov 13 00:05:16 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 23 14:00:57 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0856b685 dev-cpp/folly: skip some tests on arm64 Only the tests that were found to be failing on hardware are skipped. Closes: https://bugs.gentoo.org/919669 Signed-off-by: sin-ack protonmail.com> Signed-off-by: Sam James gentoo.org> dev-cpp/folly/folly-2024.11.04.00-r1.ebuild | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dev-cpp/folly/folly-2024.11.04.00-r1.ebuild b/dev-cpp/folly/folly-2024.11.04.00-r1.ebuild index e55339ec78a5..8406398d114d 100644 --- a/dev-cpp/folly/folly-2024.11.04.00-r1.ebuild +++ b/dev-cpp/folly/folly-2024.11.04.00-r1.ebuild @@ -90,5 +90,15 @@ src_test() { 'concurrency_concurrent_hash_map_test.*' ) + if use arm64; then + CMAKE_SKIP_TESTS+=( + # Tests are flaky/timing dependent on both QEMU chroot and real hardware + io_async_hh_wheel_timer_test.HHWheelTimerTest + # Times out on real hardware + concurrent_skip_list_test.ConcurrentSkipList + futures_retrying_test.RetryingTest.largeRetries + ) + fi + cmake_src_test }