From: Julian Seward Date: Thu, 3 Sep 2009 10:41:44 +0000 (+0000) Subject: Remove ampersand from tool description string so as not to screw up X-Git-Tag: svn/VALGRIND_3_6_0~516 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffaaef1cbc1bb287c8ab4500d104472c901fba3b;p=thirdparty%2Fvalgrind.git Remove ampersand from tool description string so as not to screw up XML output. (Ashley Pittman). git-svn-id: svn://svn.valgrind.org/valgrind/trunk@10882 --- diff --git a/exp-ptrcheck/pc_main.c b/exp-ptrcheck/pc_main.c index 64bee72572..e1a4203765 100644 --- a/exp-ptrcheck/pc_main.c +++ b/exp-ptrcheck/pc_main.c @@ -155,7 +155,7 @@ static void pc_pre_clo_init(void) VG_(details_name) ("exp-ptrcheck"); VG_(details_version) (NULL); - VG_(details_description) ("a heap, stack & global array " + VG_(details_description) ("a heap, stack and global array " "overrun detector"); VG_(details_copyright_author)( "Copyright (C) 2003-2009, and GNU GPL'd, by OpenWorks Ltd et al."); diff --git a/exp-ptrcheck/tests/filter_stderr b/exp-ptrcheck/tests/filter_stderr index 78b292ac9a..121929e2d6 100755 --- a/exp-ptrcheck/tests/filter_stderr +++ b/exp-ptrcheck/tests/filter_stderr @@ -16,7 +16,7 @@ sed "s/__libc_\(.*\) (.*)$/__libc_\1 (...libc...)/" | # Remove preambly stuff; also postambly stuff sed \ --e "/^exp-ptrcheck, a heap, stack & global array overrun detector$/d" \ +-e "/^exp-ptrcheck, a heap, stack and global array overrun detector$/d" \ -e "/^NOTE: This is an Experimental-Class Valgrind Tool$/d" \ -e "/^Copyright (C) 2003-200., and GNU GPL'd, by OpenWorks Ltd et al.$/d" \ -e "/^For counts of detected and suppressed errors, rerun with: -v$/d" |