1
0
Fork 0
mirror of https://passt.top/passt synced 2025-06-01 05:45:42 +02:00

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>
This commit is contained in:
Stefano Brivio 2022-03-15 20:16:13 +01:00
parent a3bcca864e
commit 66a95e331e
8 changed files with 99 additions and 14 deletions
test/valgrind

22
test/valgrind/passt Normal file
View file

@ -0,0 +1,22 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# PASST - Plug A Simple Socket Transport
# for qemu/UNIX domain socket mode
#
# PASTA - Pack A Subtle Tap Abstraction
# for network namespace/tap device mode
#
# test/valgrind/passt - Terminate passt and check valgrind exit code
#
# Copyright (c) 2022 Red Hat GmbH
# Author: Stefano Brivio <sbrivio@redhat.com>
onlyfor passt
test valgrind: exit code
hout PASST_PID cat passt.pid
host kill __PASST_PID__
sleep 1
pout VALGRIND_EXIT echo $?
check [ "__VALGRIND_EXIT__" = "0" ]

22
test/valgrind/passt_in_ns Normal file
View file

@ -0,0 +1,22 @@
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# PASST - Plug A Simple Socket Transport
# for qemu/UNIX domain socket mode
#
# PASTA - Pack A Subtle Tap Abstraction
# for network namespace/tap device mode
#
# test/valgrind/passt_in_ns - Terminate passt and check valgrind exit code
#
# Copyright (c) 2022 Red Hat GmbH
# Author: Stefano Brivio <sbrivio@redhat.com>
onlyfor passt_in_ns
test valgrind: exit code
nsout PASST_PID cat passt.pid
ns kill __PASST_PID__
sleep 1
pout VALGRIND_EXIT echo $?
check [ "__VALGRIND_EXIT__" = "0" ]