summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2012-02-09 22:58:36 +0000
committerDavide Pesavento <pesa@gentoo.org>2012-02-09 22:58:36 +0000
commit525f4c156a9ef154af82e26ea793dec8668757d5 (patch)
tree79baefba178538b506114743ffe05bfaebccda23 /eclass/qt4-build.eclass
parentAdd myself as maintaner, remove solar (with his permission) (diff)
downloadhistorical-525f4c156a9ef154af82e26ea793dec8668757d5.tar.gz
historical-525f4c156a9ef154af82e26ea793dec8668757d5.tar.bz2
historical-525f4c156a9ef154af82e26ea793dec8668757d5.zip
Make src_test() a noop for qt-multimedia (bug #332299).
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r--eclass/qt4-build.eclass5
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass
index 45155c230cc8..120ebc20a5f7 100644
--- a/eclass/qt4-build.eclass
+++ b/eclass/qt4-build.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.117 2012/02/09 22:07:34 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.118 2012/02/09 22:58:36 pesa Exp $
# @ECLASS: qt4-build.eclass
# @MAINTAINER:
@@ -382,6 +382,9 @@ qt4-build_src_compile() {
# @DESCRIPTION:
# Runs tests only in target directories.
qt4-build_src_test() {
+ # QtMultimedia does not have any test suite (bug #332299)
+ [[ ${PN} == "qt-multimedia" ]] && return
+
for dir in ${QT4_TARGET_DIRECTORIES}; do
emake -j1 check -C ${dir}
done