print head

This commit is contained in:
Thomas Levine 2016-04-10 06:05:28 +00:00
parent 0ee97569a6
commit 77aff50374

5
urchin
View File

@ -705,8 +705,7 @@ main() {
printf \#\ >> "${urchin_tmp}"/head printf \#\ >> "${urchin_tmp}"/head
fi fi
if test "${format}" = urchin || test "${format}" = tap; then if test "${format}" = urchin || test "${format}" = tap; then
echo Running tests at $(date +%Y-%m-%dT%H:%M:%S) \ echo Running tests at $(date +%Y-%m-%dT%H:%M:%S) >> "${urchin_tmp}"/head
>> "${urchin_tmp}"/head
fi fi
if test "${format}" = tap; then if test "${format}" = tap; then
@ -754,8 +753,10 @@ main() {
urchin_exit 1 urchin_exit 1
fi fi
cat "${urchin_tmp}"/head
report_outcome "${root}" "${format}" "${urchin_tmp}"/log "${start}" \ report_outcome "${root}" "${format}" "${urchin_tmp}"/log "${start}" \
"${finish}" "${finish}"
# cat "${urchin_tmp}"/foot
urchin_exit "${?}" urchin_exit "${?}"
} }