|
From: <sv...@va...> - 2009-05-13 08:22:16
|
Author: sewardj
Date: 2009-05-13 09:22:00 +0100 (Wed, 13 May 2009)
New Revision: 9838
Log:
Bump the generated XML's protocol version number to 4.
Modified:
branches/MESSAGING_TIDYUP/coregrind/m_main.c
Modified: branches/MESSAGING_TIDYUP/coregrind/m_main.c
===================================================================
--- branches/MESSAGING_TIDYUP/coregrind/m_main.c 2009-05-13 08:20:02 UTC (rev 9837)
+++ branches/MESSAGING_TIDYUP/coregrind/m_main.c 2009-05-13 08:22:00 UTC (rev 9838)
@@ -926,7 +926,8 @@
VG_(printf_xml)("\n");
VG_(printf_xml)("<valgrindoutput>\n");
VG_(printf_xml)("\n");
- VG_(printf_xml)("<protocolversion>3</protocolversion>\n");
+ VG_(printf_xml)("<protocolversion>4</protocolversion>\n");
+ VG_(printf_xml)("<protocoltool>%s</protocoltool>\n", toolname);
VG_(printf_xml)("\n");
}
@@ -2243,6 +2244,8 @@
//--------------------------------------------------------------
if (VG_(clo_verbosity) > 0)
VG_(message)(Vg_UserMsg, "\n");
+ if (VG_(clo_xml))
+ VG_(printf_xml)("\n");
if (VG_(clo_xml)) {
HChar buf[50];
|