File: filter_timestamp

package info (click to toggle)
valgrind 1%3A3.14.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 156,980 kB
  • sloc: ansic: 728,128; exp: 26,134; xml: 22,268; cpp: 7,638; asm: 7,312; makefile: 6,102; perl: 5,910; sh: 5,717
file content (27 lines) | stat: -rwxr-xr-x 764 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#! /bin/sh

dir=`dirname $0`

sed "s/^==//" |

perl -p -e "s/ [0-9]{1,7}==//" |

# Have to strip the header ourselves, because the timestamp means the
# default stripping doesn't work.
sed "/ Nulgrind.*$/ d" |
sed "/ Copyright.*$/ d" |
sed "/ Using Valgrind.*$/ d" |
sed "/ Command:.*$/ d" |

$dir/filter_stderr |

# At this point there are two lines left which look something like this:
#   00:00:00:00.000
#   00:00:00:01.107  
# We replace the last 5 numbers to allow for a wide range of possible times.
# It's not a great test, but it will catch some breakage (eg. if the times
# don't start near 0, as happened in bug 200990, or if the space following
# the time is omitted, as happened in r10465).
#
perl -p -e "s/^00:00:00:\d\d\.\d\d\d $/00:00:00:XX:YYY/"