diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-08-20 21:43:25 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2011-08-20 21:43:25 +0000 |
commit | f123094b80cfe0dfae6189084d6062e9e5945176 (patch) | |
tree | 121c8cfec7979e26b25bcedfacf9905c9177410c /eclass | |
parent | Version bump. Removed old. Fixed compilation on hardened (bug #326345) (diff) | |
download | gentoo-2-f123094b80cfe0dfae6189084d6062e9e5945176.tar.gz gentoo-2-f123094b80cfe0dfae6189084d6062e9e5945176.tar.bz2 gentoo-2-f123094b80cfe0dfae6189084d6062e9e5945176.zip |
When cmake tests fail, request that the full test log be attached to the bug
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/cmake-utils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/cmake-utils.eclass b/eclass/cmake-utils.eclass index 96003fcddc90..db9e48913d0a 100644 --- a/eclass/cmake-utils.eclass +++ b/eclass/cmake-utils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.70 2011/07/18 09:08:21 dilfridge Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/cmake-utils.eclass,v 1.71 2011/08/20 21:43:25 dilfridge Exp $ # @ECLASS: cmake-utils.eclass # @MAINTAINER: @@ -439,7 +439,7 @@ enable_cmake-utils_src_test() { [[ -e CTestTestfile.cmake ]] || { echo "No tests found. Skipping."; return 0 ; } [[ -n ${TEST_VERBOSE} ]] && ctestargs="--extra-verbose --output-on-failure" - ctest ${ctestargs} "$@" || die "Tests failed." + ctest ${ctestargs} "$@" || die "Tests failed. When you file a bug, please attach the following file: \n\t${CMAKE_BUILD_DIR}/Testing/Temporary/LastTest.log" popd > /dev/null } |