|
From: <sv...@va...> - 2009-09-03 10:41:59
|
Author: sewardj
Date: 2009-09-03 11:41:44 +0100 (Thu, 03 Sep 2009)
New Revision: 10882
Log:
Remove ampersand from tool description string so as not to screw up
XML output. (Ashley Pittman).
Modified:
trunk/exp-ptrcheck/pc_main.c
trunk/exp-ptrcheck/tests/filter_stderr
Modified: trunk/exp-ptrcheck/pc_main.c
===================================================================
--- trunk/exp-ptrcheck/pc_main.c 2009-09-03 10:29:57 UTC (rev 10881)
+++ trunk/exp-ptrcheck/pc_main.c 2009-09-03 10:41:44 UTC (rev 10882)
@@ -155,7 +155,7 @@
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.");
Modified: trunk/exp-ptrcheck/tests/filter_stderr
===================================================================
--- trunk/exp-ptrcheck/tests/filter_stderr 2009-09-03 10:29:57 UTC (rev 10881)
+++ trunk/exp-ptrcheck/tests/filter_stderr 2009-09-03 10:41:44 UTC (rev 10882)
@@ -16,7 +16,7 @@
# 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" |
|