Patch from Robert Walsh <rjwalsh@durables.org>. Adds some new client
requests to allow client code to print messages through Valgrind's
logging mechanism.  The new requests are:
  VALGRIND_PRINTF - do a normal printf (prefixed with **PID**)
  VALGRIND_PRINTF_BACKTRACE - do a printf with stack trace
  VALGRIND_INTERNAL_PRINTF - printf, but for internal use (prefixed with ==PID==)
  VALGRIND_INTERNAL_PRINTF_BACKTRACE - as above, with backtrace


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@1974 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/tests/filter_stderr_basic b/tests/filter_stderr_basic
index ac34fa9..55b2f29 100755
--- a/tests/filter_stderr_basic
+++ b/tests/filter_stderr_basic
@@ -3,8 +3,8 @@
 # This filter should be applied to *every* stderr results.  It removes Valgrind
 # startup stuff and pid numbers.
 
-# Remove ==pid== and --pid-- and ++pid++ strings 
-sed "s/\(==\|--\|++\)[0-9]\{1,5\}\1 //"                                |
+# Remove ==pid== and --pid-- and ++pid++ and **pid** strings 
+sed "s/\(==\|--\|\+\+\|\*\*\)[0-9]\{1,5\}\1 //"                            |
 
 # Remove "<name>, a <description> for x86-linux." line and the following
 # copyright notice line.  Works for skin and core intro lines.