aboutgitcodebugslistschat
path: root/test/valgrind.supp
diff options
context:
space:
mode:
authorStefano Brivio <sbrivio@redhat.com>2022-03-15 20:16:13 +0100
committerStefano Brivio <sbrivio@redhat.com>2022-03-29 15:35:38 +0200
commit66a95e331ec930e72bc06c54b283ea88b30ecbaa (patch)
treeff6163b74565c9a3906d37a38f2995c996a1bffe /test/valgrind.supp
parenta3bcca864e4692889ab4de77912b6a25e51dae16 (diff)
downloadpasst-66a95e331ec930e72bc06c54b283ea88b30ecbaa.tar
passt-66a95e331ec930e72bc06c54b283ea88b30ecbaa.tar.gz
passt-66a95e331ec930e72bc06c54b283ea88b30ecbaa.tar.bz2
passt-66a95e331ec930e72bc06c54b283ea88b30ecbaa.tar.lz
passt-66a95e331ec930e72bc06c54b283ea88b30ecbaa.tar.xz
passt-66a95e331ec930e72bc06c54b283ea88b30ecbaa.tar.zst
passt-66a95e331ec930e72bc06c54b283ea88b30ecbaa.zip
test, seccomp, Makefile: Switch to valgrind runs for passt functional tests
Pass to seccomp.sh a list of additional syscalls valgrind needs as EXTRA_SYSCALLS in a new 'valgrind' make target, and add corresponding support in seccomp.sh itself. In test setup functions, start passt with valgrind, but not for performance tests. Add tests checking that valgrind exits without errors after all the other tests in the group are done. Signed-off-by: Stefano Brivio <sbrivio@redhat.com>
Diffstat (limited to 'test/valgrind.supp')
-rw-r--r--test/valgrind.supp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/valgrind.supp b/test/valgrind.supp
new file mode 100644
index 0000000..1228056
--- /dev/null
+++ b/test/valgrind.supp
@@ -0,0 +1,9 @@
+# tcp_sock_consume() calls recv() with MSG_TRUNC and no buffer to discard data
+{
+ passt_recv_MSG_TRUNC_into_NULL_buffer
+ Memcheck:Param
+ socketcall.recvfrom(buf)
+ fun:recv
+ ...
+ fun:tcp_sock_consume*
+}