Files
valgrind/memcheck/tests/client-msg.c
Florian Krohm 089f1ef803 When XML mode is selected messages from VALGRIND_PRINTF and friends
should go to the XML stream not stderr.  Fixes BZ 322807.


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13516
2013-08-27 15:17:53 +00:00

25 lines
195 B
C

#include "valgrind.h"
void baz()
{
VALGRIND_PRINTF_BACKTRACE("hello <> %s%%s world\n","<&>");
}
void bar()
{
baz();
}
void foo()
{
bar();
}
int main()
{
foo();
return 0;
}