6 $dir/..
/..
/tests
/filter_xml_frames |
7 sed "s/<tid>[0-9]*<\/tid>/<tid>...<\/tid>/" |
8 sed "s/<pid>[0-9]*<\/pid>/<pid>...<\/pid>/" |
9 sed "s/<ppid>[0-9]*<\/ppid>/<ppid>...<\/ppid>/" |
10 sed "s/<obj>.*<\/obj>/<obj>...<\/obj>/" |
11 sed "s/<line>.*<\/line>/<line>...<\/line>/" |
12 sed "s/<dir>.*<\/dir>/<dir>...<\/dir>/" |
13 sed "s/<count>.*<\/count>/<count>...<\/count>/" |
14 sed "s/of size [48]</of size N</" |
15 perl
-p -e "s/(m_replacemalloc\/)?vg_replace_malloc.c/vg_replace_malloc.c/" |
16 perl
-0 -p -e "s/<suppcounts>.*<\/suppcounts>/<suppcounts>...<\/suppcounts>/s" |
17 perl
-p -e "s/<time>.*<\/time>/<time>...<\/time>/s" |
18 perl
-0 -p -e "s/<vargv>.*<\/vargv>/<vargv>...<\/vargv>/s" |
20 # Remove stack traces for Syscall param errors (see filter_stderr for more).
21 # Chops everything within <stack>...</stack>.
22 perl
-p -0 -e 's/(<what>Syscall param[^\n]*\n)([^\n]*(stack|frame|ip|obj|fn|dir|file|line)[^\n]*\n)+/$1/gs'
24 # Collected wisdom re Perl magic incantation:
28 # Two problems - one is that you need -p to force perl to loop over
29 # the input lines and apply your expression to each one and then print
32 # The other is that as somebody else said you need to change the input
33 # record separator so that it reads in the whole file as a single line
34 # (which means we can do multi-line matching in a single regexp) which you
35 # can do with the -0 switch.