1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

s3-build: Don't paste the summary.

The buildfarm outputs the summary if it is available and use the exit
status of the filter or subunit formatter as exit code.
This commit is contained in:
Andreas Schneider 2010-08-26 11:41:05 +02:00
parent a701484230
commit d132b3fbc0

View File

@ -25,9 +25,9 @@ if [ "x${RUN_FROM_BUILD_FARM}" = "xyes" ]; then
--socket-wrapper ${TESTS} \
&& touch ${SELFTESTPREFIX}/st_done ) | \
${FILTER_XFAIL} --strip-passed-output
EXIT_STATUS=$?
st_test_done
test -f ${SELFTESTPREFIX}/summary && cat ${SELFTESTPREFIX}/summary
else
( rm -f ${SELFTESTPREFIX}/st_done && \
${PERL} ${SELFTESTDIR}/selftest.pl \
@ -37,8 +37,9 @@ else
--socket-wrapper ${TESTS} \
&& touch ${SELFTESTPREFIX}/st_done ) | \
${SUBUNIT_FORMATTER}
EXIT_STATUS=$?
st_test_done
fi
cleanup_and_exit
cleanup_and_exit ${EXIT_STATUS}