Stefan Reinauer ([email protected]) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1992
-gerrit commit a52ee4d9eb81b1586489a7531750ea6894f615b5 Author: Stefan Reinauer <[email protected]> Date: Fri Dec 7 13:13:26 2012 -0800 abuild: produce valid junit files If no valid cross compiler is found, the junit file produced by abuild is invalid, missing the closing </testcase> tag. This breaks proper reporting in Jenkins of our ARM board at this moment. Change-Id: I94bfc7f334d33ceeb53451a7c5125058c1f33bd4 Signed-off-by: Stefan Reinauer <[email protected]> --- util/abuild/abuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/util/abuild/abuild b/util/abuild/abuild index 9591d13..aefb1ea 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -368,8 +368,9 @@ function build_target xml "" xml "</mainboard>" - junit " <testcase classname='board' name='$TARCH/$VENDOR/$MAINBOARD' >" - junit "<failure type='NoCrossCompiler'>No cross-compiler for $TARCH found</failure>" + junit "<testcase classname='board' name='$TARCH/$VENDOR/$MAINBOARD' >" + junit " <failure type='NoCrossCompiler'>No cross-compiler for $TARCH found</failure>" + junit "</testcase>" return 0 else -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

