commit: b5cbbb68af85a1996cf5242baa436c1668fbf5f2
Author: Kamal Abdellatif <gentoo.kamal <AT> tgf <DOT> pw>
AuthorDate: Mon Feb 13 10:27:08 2023 +0000
Commit: Florian Schmaus <flow <AT> gentoo <DOT> 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 <gentoo.kamal <AT> 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
+}