Small problem below :

On 10-10-11 11:04 AM, Nils Carlson wrote:
For some reason valgrind thinks the iov array in ustcomm_send_fd
is used uninitialised. Add a suppression so this won't show as
an error.

Signed-off-by: Nils Carlson<[email protected]>
---
  tests/valgrind_suppress.txt |    7 +++++++
  tests/valgrind_ustd.sh      |    2 +-
  2 files changed, 8 insertions(+), 1 deletions(-)
  create mode 100644 tests/valgrind_suppress.txt

diff --git a/tests/valgrind_suppress.txt b/tests/valgrind_suppress.txt
new file mode 100644
index 0000000..8e7e397
--- /dev/null
+++ b/tests/valgrind_suppress.txt
@@ -0,0 +1,7 @@
+{
+   sendmsg-iov-errors
+   Memcheck:Param
+   socketcall.sendmsg(msg.msg_iov[i])
+   obj:/lib/libpthread-2.11.2.so

This suppression doesn't work with libpthread here on my system. My lib version is 2.11.1 but still not working. I've add --gen-suppresions=yes to valgrind and libc is used instead of libpthread :

obj:/lib/libc-2.11.1.so

It is working fine. However, we will have a problem with different version of libc so for this, valgrind supports wildcard * and ?

obj:/lib/libc-2.* (this works very well)

Thanks!
David

+   fun:ustcomm_send_fd
+}
diff --git a/tests/valgrind_ustd.sh b/tests/valgrind_ustd.sh
index 532022d..541d8ca 100755
--- a/tests/valgrind_ustd.sh
+++ b/tests/valgrind_ustd.sh
@@ -34,7 +34,7 @@ pidfilepath="/tmp/ust-testsuite-$USER-$(date 
+%Y%m%d%H%M%S%N)-ustd-pid"
  mkfifo -m 0600 "$pidfilepath"

  VALG_OUT=/tmp/ust-testsuite-valg.txt
-valgrind -q ustd --pidfile "$pidfilepath" -o "$TRACE_DIR">/dev/null 
2>"$VALG_OUT"&
+valgrind --suppressions=$TESTDIR/valgrind_suppress.txt -q ustd --pidfile "$pidfilepath" -o 
"$TRACE_DIR">/dev/null 2>"$VALG_OUT"&
  VALG_PID=$!
  USTD_PID="$(<$pidfilepath)"


--
David Goulet
LTTng project, DORSAL Lab.

PGP/GPG : 1024D/16BD8563
BE3C 672B 9331 9796 291A  14C6 4AF7 C14B 16BD 8563

_______________________________________________
ltt-dev mailing list
[email protected]
http://lists.casi.polymtl.ca/cgi-bin/mailman/listinfo/ltt-dev

Reply via email to