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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B58011395E1 for ; Wed, 2 Nov 2016 23:01:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7DD2DE0B71; Wed, 2 Nov 2016 23:01:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 623F6E0B71 for ; Wed, 2 Nov 2016 23:01:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2757F34166F for ; Wed, 2 Nov 2016 23:01:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8E9F724AF for ; Wed, 2 Nov 2016 23:01:40 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1478127695.68d84b27b18735869e8a405d261f0aa8a23dd98b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/lldb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/lldb/lldb-9999.ebuild X-VCS-Directories: dev-util/lldb/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 68d84b27b18735869e8a405d261f0aa8a23dd98b X-VCS-Branch: master Date: Wed, 2 Nov 2016 23:01:40 +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-Archives-Salt: 6d317167-8e49-428a-99c5-1648e34f9430 X-Archives-Hash: 257aaf08e267e2602cd8d4d7430f33b8 commit: 68d84b27b18735869e8a405d261f0aa8a23dd98b Author: Michał Górny gentoo org> AuthorDate: Wed Nov 2 22:42:58 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 2 23:01:35 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68d84b27 dev-util/lldb: Run Python tests when available dev-util/lldb/lldb-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-util/lldb/lldb-9999.ebuild b/dev-util/lldb/lldb-9999.ebuild index 070e60d..bbe9da8 100644 --- a/dev-util/lldb/lldb-9999.ebuild +++ b/dev-util/lldb/lldb-9999.ebuild @@ -64,9 +64,11 @@ src_configure() { -DLLDB_DISABLE_PYTHON=$(usex !python) -DLLVM_ENABLE_TERMINFO=$(usex ncurses) - # compilers for tests + # compilers for lit tests -DLLDB_TEST_C_COMPILER="${EPREFIX}/usr/bin/clang" -DLLDB_TEST_CXX_COMPILER="${EPREFIX}/usr/bin/clang++" + # compiler for ole' python tests + -DLLDB_TEST_COMPILER="${EPREFIX}/usr/bin/clang" # TODO: fix upstream to detect this properly -DHAVE_LIBDL=ON @@ -88,6 +90,7 @@ src_configure() { src_test() { cmake-utils_src_make check-lldb-lit + use python && cmake-utils_src_make check-lldb } src_install() {