1#! /bin/sh
2
3dir=`dirname $0`
4
5$dir/../../tests/filter_stderr_basic    |
6
7# Remove "Lackey, ..." line and the following copyright line.
8sed "/^Lackey, an example Valgrind tool/ , /./ d" |
9
10# Filter all the numbers.
11../../tests/filter_numbers |
12
13# Replace "call" with "calls"
14sed "s/ call / calls /"
15