From: Jan-Benedict G. <jb...@us...> - 2005-12-18 11:52:37
|
Update of /cvsroot/linux-vax/toolchain/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7413 Modified Files: run_test_build.sh Log Message: - Send a more helpful email if a build is fucked up. We basically want to know what really worked, as well as the last lines of the build.log to see what error actually happened. Index: run_test_build.sh =================================================================== RCS file: /cvsroot/linux-vax/toolchain/scripts/run_test_build.sh,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- run_test_build.sh 17 Dec 2005 21:11:43 -0000 1.9 +++ run_test_build.sh 18 Dec 2005 11:52:23 -0000 1.10 @@ -119,8 +119,14 @@ echo "Here's the difference of the build log of the last" echo "known-successful build:" echo "" + echo "We managed to build these parts:" + echo "" + grep '^#' "${BUILD_DIRECTORY}/build.log" + echo "" + echo "...and this are the 100 last lines of the build.log:" + echo "" echo "================== 8< -------------------------" - compare_buildlog.sh "${BUILD_OKAY}" "${BUILD_DIRECTORY}/build.log" + tail -100 "${BUILD_DIRECTORY}/build.log" echo "------------------ >8 =========================" echo "" echo "Have a nice day," |