# HG changeset patch # User timothy.murphy@nokia.com # Date 1266169612 -7200 # Node ID 9bc64f367d8a86a48c0d01a401709040ca1a74d4 # Parent ce7b587b436cfd93604d8b5caa5cc87f3cfc8258 fix: checkcomp filter formatting updates from Samu Sillanpaa. This is a custom filter for helium scanlog's missing files-per-component reporting. diff -r ce7b587b436c -r 9bc64f367d8a sbsv2/raptor/python/plugins/filter_checkcomp.py --- a/sbsv2/raptor/python/plugins/filter_checkcomp.py Fri Feb 12 15:41:09 2010 +0200 +++ b/sbsv2/raptor/python/plugins/filter_checkcomp.py Sun Feb 14 19:46:52 2010 +0200 @@ -48,15 +48,19 @@ self.outfile.write("=== %s == %s\n" % (dir, dir)) self.outfile.write("=== check == %s\n" % (dir)) - self.outfile.write("-- abld -w \nChdir %s \n++ Started at\n" % dir) - + self.outfile.write("-- sbs_filter --filters=FilterCheckComp\n++ Started at Thu Feb 11 10:05:19 2010\nChdir %s\n" % dir) + def end_bldinf(self): - self.outfile.write("++ Finished at\n") + self.outfile.write("++ Finished at Thu Feb 11 10:05:20 2010\n") + + def close(self): + self.outfile.write("++ Finished at Thu Feb 11 10:05:20 2010\n") + self.outfile.write("=== check finished Thu Feb 11 10:05:20 2010\n") def open(self, build_parameters): t = filter_what.FilterWhat.open(self, build_parameters) if t: - self.outfile.write("===-------------------------------------------------\n") + self.outfile.write("\n===-------------------------------------------------\n") self.outfile.write("=== check\n") self.outfile.write("===-------------------------------------------------\n") self.outfile.write("=== check started Thu Feb 11 10:02:21 2010\n")