From 8c0a0612452b1380f82f278fc999aafa8f53848e Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Tue, 14 Dec 2004 09:18:57 +0000 Subject: [PATCH] Update, and thereby unbreak trivial regtest breakage. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3199 --- tests/filter_stderr_basic | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tests/filter_stderr_basic b/tests/filter_stderr_basic index 7094f78b3..04e036fa5 100755 --- a/tests/filter_stderr_basic +++ b/tests/filter_stderr_basic @@ -1,7 +1,7 @@ #! /bin/sh -# This filter should be applied to *every* stderr results. It removes Valgrind -# startup stuff and pid numbers. +# This filter should be applied to *every* stderr result. It removes +# Valgrind startup stuff and pid numbers. # Remove ==pid== and --pid-- and ++pid++ and **pid** strings sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\1 //" | @@ -10,9 +10,12 @@ sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\1 //" | # copyright notice line. Tools have to filter their own line themselves. sed "/^Using valgrind-.*, a dynamic binary instrumentation framework/ , /./ d" | +# ... and also remove the "Using LibVEX..." line and the one after it. +sed "/^Using LibVEX-.*, a library for dynamic binary translation/ , /./ d" | + # Remove other introductory lines sed "/Estimated CPU clock rate is [0-9]* MHz/d" | -sed "/For more details, rerun with: -v/d" | +sed "/For more details, rerun with: -v/d" | # Anonymise line numbers in vg_replace_malloc.c sed "s/vg_replace_malloc.c:[0-9]*/vg_replace_malloc.c:.../" |