|
From: <sv...@va...> - 2007-09-17 05:35:10
|
Author: njn
Date: 2007-09-17 06:35:10 +0100 (Mon, 17 Sep 2007)
New Revision: 6842
Log:
temporary hack for ms_print
Modified:
branches/MASSIF2/massif/ms_print
Modified: branches/MASSIF2/massif/ms_print
===================================================================
--- branches/MASSIF2/massif/ms_print 2007-09-17 05:30:48 UTC (rev 6841)
+++ branches/MASSIF2/massif/ms_print 2007-09-17 05:35:10 UTC (rev 6842)
@@ -205,6 +205,7 @@
{
while (my $line = <INPUTFILE>) {
$line =~ s/#.*$//; # remove comments
+ $line =~ s/==\d+==.*$//; # remove Valgrind output lines XXX
if ($line !~ /^\s*$/) {
return $line; # return $line if non-empty
}
|