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 4C1DF15808B for ; Sat, 9 Apr 2022 17:15:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 91CC2E096A; Sat, 9 Apr 2022 17:15:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 9945CE096A for ; Sat, 9 Apr 2022 17:15:47 +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 5957534174C for ; Sat, 9 Apr 2022 17:15:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB3BA250 for ; Sat, 9 Apr 2022 17:15:43 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1649524488.f4f618f90045aa555a34de3897b910446c3439a2.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/freerdp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/freerdp/freerdp-2.6.1.ebuild net-misc/freerdp/freerdp-2.9999.ebuild net-misc/freerdp/freerdp-9999.ebuild X-VCS-Directories: net-misc/freerdp/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: f4f618f90045aa555a34de3897b910446c3439a2 X-VCS-Branch: master Date: Sat, 9 Apr 2022 17:15:43 +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: f18575b6-5a86-4add-97d6-9026255abf33 X-Archives-Hash: e2a594fe68f257de5b7192237cc1522f commit: f4f618f90045aa555a34de3897b910446c3439a2 Author: Mike Gilbert gentoo org> AuthorDate: Sat Apr 9 17:14:48 2022 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Apr 9 17:14:48 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4f618f9 net-misc/freerdp: skip TestBacktrace on musl Closes: https://bugs.gentoo.org/836716 Signed-off-by: Mike Gilbert gentoo.org> net-misc/freerdp/freerdp-2.6.1.ebuild | 6 ++++++ net-misc/freerdp/freerdp-2.9999.ebuild | 6 ++++++ net-misc/freerdp/freerdp-9999.ebuild | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/net-misc/freerdp/freerdp-2.6.1.ebuild b/net-misc/freerdp/freerdp-2.6.1.ebuild index a9c7d1c5d9bb..99ddb2dd9804 100644 --- a/net-misc/freerdp/freerdp-2.6.1.ebuild +++ b/net-misc/freerdp/freerdp-2.6.1.ebuild @@ -116,3 +116,9 @@ src_configure() { ) cmake_src_configure } + +src_test() { + local myctestargs=() + use elibc_musl && myctestargs+=( -E TestBacktrace ) + cmake_src_test +} diff --git a/net-misc/freerdp/freerdp-2.9999.ebuild b/net-misc/freerdp/freerdp-2.9999.ebuild index a9c7d1c5d9bb..99ddb2dd9804 100644 --- a/net-misc/freerdp/freerdp-2.9999.ebuild +++ b/net-misc/freerdp/freerdp-2.9999.ebuild @@ -116,3 +116,9 @@ src_configure() { ) cmake_src_configure } + +src_test() { + local myctestargs=() + use elibc_musl && myctestargs+=( -E TestBacktrace ) + cmake_src_test +} diff --git a/net-misc/freerdp/freerdp-9999.ebuild b/net-misc/freerdp/freerdp-9999.ebuild index a9c7d1c5d9bb..99ddb2dd9804 100644 --- a/net-misc/freerdp/freerdp-9999.ebuild +++ b/net-misc/freerdp/freerdp-9999.ebuild @@ -116,3 +116,9 @@ src_configure() { ) cmake_src_configure } + +src_test() { + local myctestargs=() + use elibc_musl && myctestargs+=( -E TestBacktrace ) + cmake_src_test +}