From: Julian Seward Date: Thu, 7 Oct 2010 13:33:28 +0000 (+0000) Subject: Update stderr filters so that regtests pass on machines with 3-level caches. X-Git-Tag: svn/VALGRIND_3_6_0~46 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1a187bd14775c6427d362b4e2c2e4234bcf2e4fb;p=thirdparty%2Fvalgrind.git Update stderr filters so that regtests pass on machines with 3-level caches. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@11411 --- diff --git a/cachegrind/tests/filter_stderr b/cachegrind/tests/filter_stderr index 6a14e344a9..af898d46f6 100755 --- a/cachegrind/tests/filter_stderr +++ b/cachegrind/tests/filter_stderr @@ -16,5 +16,5 @@ perl -p -e 's/((I1|D1|LL|LLi|LLd) *(misses|miss rate):)[ 0-9,()+rdw%\.]*$/\1/' | # Remove CPUID warnings lines for P4s and other machines sed "/warning: Pentium 4 with 12 KB micro-op instruction trace cache/d" | sed "/Simulating a 16 KB I-cache with 32 B lines/d" | -sed "/warning: L3 cache detected but ignored/d" | +sed "/warning: L3 cache found, using its data for the LL simulation./d" | sed "/Warning: Cannot auto-detect cache config on PPC.., using one or more defaults/d" diff --git a/callgrind/tests/filter_stderr b/callgrind/tests/filter_stderr index 26bc3c04e3..4a7326af60 100755 --- a/callgrind/tests/filter_stderr +++ b/callgrind/tests/filter_stderr @@ -25,5 +25,5 @@ perl -p -e 's/((Branches|Mispredicts|Mispred rate):)[ 0-9,()+condi%\.]*$/\1/' | # Remove CPUID warnings lines for P4s and other machines sed "/warning: Pentium 4 with 12 KB micro-op instruction trace cache/d" | sed "/Simulating a 16 KB I-cache with 32 B lines/d" | -sed "/warning: L3 cache detected but ignored/d" | +sed "/warning: L3 cache found, using its data for the LL simulation./d" | sed "/Warning: Cannot auto-detect cache config on PPC.., using one or more defaults/d"