blob: cdf703f2fd9f136b2b2e0bd185e94bb00d8354bb [file] [log] [blame]
bart0cc09c92008-02-26 12:52:00 +00001#!/bin/sh
2
3# Filter the error output of Valgrind such that only the line with the error
4# summary is kept. Bart Van Assche, February 26, 2008.
5
bart82d886e2008-02-26 16:03:25 +00006sed -n -e 's/^.*\(ERROR SUMMARY.*\) ([^()]*)$/\1/' -e '/ERROR SUMMARY/p'