diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-21 15:31:12 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-02-21 15:31:12 +0000 |
commit | a08cb141d6d3d8abba7c533eba17f9ca46d8dd09 (patch) | |
tree | b705c372968f0410d8a3583038cfe141380e9e07 /dev-util/cmake | |
parent | Metadata update. Take direct maintainership. (diff) | |
download | gentoo-2-a08cb141d6d3d8abba7c533eba17f9ca46d8dd09.tar.gz gentoo-2-a08cb141d6d3d8abba7c533eba17f9ca46d8dd09.tar.bz2 gentoo-2-a08cb141d6d3d8abba7c533eba17f9ca46d8dd09.zip |
Exclude bootstraptest because it is pointless for us.
(Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/cmake')
-rw-r--r-- | dev-util/cmake/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/cmake/cmake-2.8.4.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/dev-util/cmake/ChangeLog b/dev-util/cmake/ChangeLog index bafd959e2655..7e7456973eac 100644 --- a/dev-util/cmake/ChangeLog +++ b/dev-util/cmake/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/cmake # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.152 2011/02/21 14:52:57 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/ChangeLog,v 1.153 2011/02/21 15:31:12 scarabeus Exp $ + + 21 Feb 2011; Tomáš Chvátal <scarabeus@gentoo.org> cmake-2.8.4.ebuild: + Exclude bootstraptest because it is pointless for us. *cmake-2.8.4 (21 Feb 2011) diff --git a/dev-util/cmake/cmake-2.8.4.ebuild b/dev-util/cmake/cmake-2.8.4.ebuild index c516edf91eb4..6e15b3e70c2f 100644 --- a/dev-util/cmake/cmake-2.8.4.ebuild +++ b/dev-util/cmake/cmake-2.8.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild,v 1.1 2011/02/21 14:52:57 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cmake/cmake-2.8.4.ebuild,v 1.2 2011/02/21 15:31:12 scarabeus Exp $ EAPI=4 @@ -117,9 +117,12 @@ src_compile() { src_test() { # fix OutDir test + # this is altered thanks to our eclass sed -i -e 's:#IGNORE ::g' "${S}"/Tests/OutDir/CMakeLists.txt || die pushd "${CMAKE_BUILD_DIR}" > /dev/null - "${CMAKE_BUILD_DIR}"/bin/ctest || die "Tests failed" + # Excluded tests: + # BootstrapTest: we actualy bootstrap it every time so why test it + "${CMAKE_BUILD_DIR}"/bin/ctest -E BootstrapTest || die "Tests failed" popd > /dev/null } |