← Back to team overview

launchpad-dev team mailing list archive

Re: Getting the failing tests out of the ec2 failures emails

 

On Wed, 28 Jul 2010 12:18:56 Tim Penhey wrote:
> function lp-failing
> {
>   zcat $1 | subunit-filter --no-passthrough --no-skip | subunit-ls | uniq
> }

Actually, a sort before uniq is needed:

function lp-failing
{
  zcat $1 | subunit-filter --no-passthrough --no-skip | subunit-ls | sort | 
uniq
}



Follow ups

References