diff options
author | Dominik Kapusta <ayoy@gentoo.org> | 2010-07-03 15:49:39 +0000 |
---|---|---|
committer | Dominik Kapusta <ayoy@gentoo.org> | 2010-07-03 15:49:39 +0000 |
commit | 301c93b87f63ee7b467fd26609821c5e908e42b9 (patch) | |
tree | 4b0e86dd454aa1779b37b32e1fd94a355e30ac1c /eclass/qt4-build.eclass | |
parent | alpha/arm/ia64/s390/sh/sparc stable wrt #325425 (diff) | |
download | historical-301c93b87f63ee7b467fd26609821c5e908e42b9.tar.gz historical-301c93b87f63ee7b467fd26609821c5e908e42b9.tar.bz2 historical-301c93b87f63ee7b467fd26609821c5e908e42b9.zip |
Add qt4-build_src_test that runs make check only in target build directories.
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 785f536f988c..c131d80b011c 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.75 2010/07/03 09:10:55 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.76 2010/07/03 15:49:39 ayoy Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -338,6 +338,15 @@ qt4-build_src_compile() { build_directories ${QT4_TARGET_DIRECTORIES} } +# @FUNCTION: qt4-build_src_test +# @DESCRIPTION: +# Runs tests only in target directories. +qt4-build_src_test() { + for dir in ${QT4_TARGET_DIRECTORIES}; do + emake -j1 check -C ${dir} + done +} + # @FUNCTION: fix_includes # @DESCRIPTION: # For MacOSX we need to add some symlinks when frameworks are @@ -742,4 +751,4 @@ qt_mkspecs_dir() { echo "${spec}" } -EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install pkg_postrm pkg_postinst +EXPORT_FUNCTIONS pkg_setup src_unpack src_prepare src_configure src_compile src_install src_test pkg_postrm pkg_postinst |