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 E838615800F for ; Tue, 14 Feb 2023 12:02:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 86038E0824; Tue, 14 Feb 2023 12:02:47 +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 6E7FAE0824 for ; Tue, 14 Feb 2023 12:02: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 4AB1D340C15 for ; Tue, 14 Feb 2023 12:02:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A8B518AE for ; Tue, 14 Feb 2023 12:02:44 +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: <1676302985.b5cbbb68af85a1996cf5242baa436c1668fbf5f2.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-cpp/xsimd/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-cpp/xsimd/xsimd-10.0.0.ebuild X-VCS-Directories: dev-cpp/xsimd/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: b5cbbb68af85a1996cf5242baa436c1668fbf5f2 X-VCS-Branch: master Date: Tue, 14 Feb 2023 12:02:44 +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: b196f434-f1a2-47ae-952f-025b9d846ad6 X-Archives-Hash: c2e17799a3764164acb1f56102bc8a18 commit: b5cbbb68af85a1996cf5242baa436c1668fbf5f2 Author: Kamal Abdellatif tgf pw> AuthorDate: Mon Feb 13 10:27:08 2023 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Mon Feb 13 15:43:05 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b5cbbb68 dev-cpp/xsimd: move tests out of src_compile Signed-off-by: Kamal Abdellatif tgf.pw> dev-cpp/xsimd/xsimd-10.0.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-cpp/xsimd/xsimd-10.0.0.ebuild b/dev-cpp/xsimd/xsimd-10.0.0.ebuild index 0398f664b..0c4a791b3 100644 --- a/dev-cpp/xsimd/xsimd-10.0.0.ebuild +++ b/dev-cpp/xsimd/xsimd-10.0.0.ebuild @@ -47,11 +47,13 @@ src_configure() { } src_compile() { - use test && cmake_src_compile xtest - if use doc; then cd "${WORKDIR}/${P}/docs" || die emake html BUILDDIR="${BUILD_DIR}" HTML_DOCS=( "${BUILD_DIR}/html/." ) fi } + +src_test() { + cmake_src_compile xtest +}