show all counts in cross-shell-tests runner

It previously just showed the last three lines. It needs to show the
last four lines now because urchin now displays skipped tests.
This commit is contained in:
Thomas Levine 2016-01-29 17:19:14 +00:00
parent 31023bce21
commit 655daf4b74

View File

@ -6,7 +6,7 @@ for shell in dash bash ksh zsh; do
if which $shell > /dev/null 2> /dev/null; then
echo
echo Running urchin tests in $shell
$shell urchin -s $shell tests | tail -n 3
$shell urchin -s $shell tests | tail -n 4
else
echo
echo Skipping $shell because it is not in the PATH