Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

While working with Valgrind tool, i need to log the details produced by valgrind tool. How can I accomplish that? I tried something like,

 valgrind a.out | test

and

 valgrind a.out > test

It gave just the program's output and not the valgrind memory error,leak information. Even i am getting like this if the program requires no user interaction (i.e. giving input). If the program need user input even that thing itself won't work.

How can I do this?

share|improve this question
Have you tried redirecting both stout and stderr? valgrind a.out &> file – sidyll Dec 2 '11 at 11:58

2 Answers

up vote 7 down vote accepted

By default, Valgrind writes its output to stderr. So you need to do something like:

valgrind a.out > log.txt 2>&1

Alternatively, you can tell Valgrind to write somewhere else; see http://valgrind.org/docs/manual/manual-core.html#manual-core.comment (but I've never tried this).

share|improve this answer
Thanks a lot :). It worked. Can you please tell me what's with that "2>&1"? – Dinesh Dec 2 '11 at 12:05
@Dinesh: I suggest reading gnu.org/software/bash/manual/bashref.html#Redirections, which describes the bizarre Bash syntax for doing redirections! – Oli Charlesworth Dec 2 '11 at 12:08
that syntax qualifies as a world-class brain fart – lurscher Dec 14 '12 at 22:49
valgrind --log-file="filename"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.