From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 38FB51381F3 for ; Mon, 1 Jul 2013 10:14:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7752E086B; Mon, 1 Jul 2013 10:14:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 57CF7E086B for ; Mon, 1 Jul 2013 10:14:00 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 727ED33E725 for ; Mon, 1 Jul 2013 10:13:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 04817E468F for ; Mon, 1 Jul 2013 10:13:57 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1372673657.583a65c7e5e57f1d9f375b3662ecfa0fa0eca7e7.pesa@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: net-libs/qmf/, net-libs/qmf/files/ X-VCS-Repository: proj/qt X-VCS-Files: net-libs/qmf/files/qmf-4.0.2-tests.patch net-libs/qmf/files/qmf-tests.patch net-libs/qmf/qmf-9999.ebuild X-VCS-Directories: net-libs/qmf/ net-libs/qmf/files/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: 583a65c7e5e57f1d9f375b3662ecfa0fa0eca7e7 X-VCS-Branch: master Date: Mon, 1 Jul 2013 10:13:57 +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: 73e033ad-ac4d-4747-95a0-530885c167fc X-Archives-Hash: feb826bfeb0662ff4794d8c1653471b0 commit: 583a65c7e5e57f1d9f375b3662ecfa0fa0eca7e7 Author: Davide Pesavento gmail com> AuthorDate: Mon Jul 1 10:14:17 2013 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Mon Jul 1 10:14:17 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/qt.git;a=commit;h=583a65c7 [net-libs/qmf] Sync with portage. Package-Manager: portage-2.2.0_alpha186 --- .../qmf/files/{qmf-tests.patch => qmf-4.0.2-tests.patch} | 0 net-libs/qmf/qmf-9999.ebuild | 16 ++++++++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/net-libs/qmf/files/qmf-tests.patch b/net-libs/qmf/files/qmf-4.0.2-tests.patch similarity index 100% rename from net-libs/qmf/files/qmf-tests.patch rename to net-libs/qmf/files/qmf-4.0.2-tests.patch diff --git a/net-libs/qmf/qmf-9999.ebuild b/net-libs/qmf/qmf-9999.ebuild index ca2ac3b..527c949 100644 --- a/net-libs/qmf/qmf-9999.ebuild +++ b/net-libs/qmf/qmf-9999.ebuild @@ -39,7 +39,7 @@ DEPEND="${RDEPEND} DOCS=(CHANGES) PATCHES=( - "${FILESDIR}/${PN}-tests.patch" + "${FILESDIR}/${PN}-4.0.2-tests.patch" ) src_prepare() { @@ -83,14 +83,14 @@ src_test() { emake einfo "Running tests" - export QMF_DATA="${T}" + export QMF_DATA=${T} local fail=false test= - for test in locks longstream longstring python_email qcop qlogsystem \ - qmailaddress qmailcodec qmaillog qmailmessage \ - qmailmessagebody qmailmessageheader qmailmessagepart \ - qmailnamespace qprivateimplementation; do - if ! LC_ALL=C ./tst_${test}/tst_${test}; then - eerror "'${test}' test failed!" + for test in tst_*; do + # skip test that requires messageserver to be running + [[ ${test} == tst_qmailstorageaction ]] && continue + + if ! LC_ALL=C ./${test}/${test}; then + eerror "${test#tst_} test failed!" fail=true fi echo