Home | History | Annotate | Download | only in tests
      1 #!/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 
      6 sed -n -e 's/^.*\(ERROR SUMMARY.*\) ([^()]*)$/\1/' -e '/ERROR SUMMARY/p'
      7