search for: vg_log

Displaying 1 result from an estimated 1 matches for "vg_log".

Did you mean: g_log
2011 Dec 02
1
[PATCH] build: Make valgrind tests append all output into a single log file
...++++++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/extratests/Makefile.am b/extratests/Makefile.am index bf6b3f9..519d0b9 100644 --- a/extratests/Makefile.am +++ b/extratests/Makefile.am @@ -52,12 +52,16 @@ EXTRA_DIST = suppressions +VG_FIFO=$(abs_builddir)/valgrind.fifo +VG_LOG=$(abs_builddir)/valgrind.log VG = valgrind \ - --log-file=$(abs_builddir)/valgrind.log \ + --log-file=$(VG_FIFO) \ --leak-check=full \ --error-exitcode=119 \ --suppressions=$(abs_srcdir)/suppressions -RUN_VG = $(abs_top_builddir)/run $(VG) +RUN_VG = [ ! -p $(VG_FIFO) ] && mkfifo $(VG...