common/tools/sortUnique.pl
author Simon Howkins <simonh@symbian.org>
Thu, 15 Oct 2009 16:47:42 +0100
changeset 676 63fe736c83fb
parent 246 4f2482f1dd48
child 1316 0b4a09013baf
permissions -rw-r--r--
Moved invocation of sf-brag-to-diamonds, so it's right at the end of the postbuild (apart from publishing zipped logs). This avoids the possibility of a build abort when parallel threaqds are trying to a) convert a log file into a brag file, and b) merge all brag files ready to determine the brag status. It also makes more sense - don't calculate or send the BRAGG status until the build is on the cusp of completion.

#!perl -w
use strict;
# Sorts the input, removes duplicates, and outputs it

# Read it
my @content = <>;

# Sort it, and grep to remove duplicates
my $previous = "\n\n";
@content = grep {$_ ne $previous && ($previous = $_, 1) } sort @content;

# Write it
print @content;