From 09b5a72b0f108f0a77be116a90786f2486c3a4f1 Mon Sep 17 00:00:00 2001 From: Thomas Haller Date: Mon, 7 Sep 2020 16:20:43 +0200 Subject: [PATCH] tests: ignore valgrind warning about unhandled syscalls On Fedora rawhide (34), valgrind gives a lot of warnings like: ./src/platform/tests/test-cleanup-linux.valgrind-log:--48279-- WARNING: unhandled amd64-linux syscall: 439 ./src/platform/tests/test-cleanup-linux.valgrind-log:--48279-- You may be able to write your own handler. ./src/platform/tests/test-cleanup-linux.valgrind-log:--48279-- Read the file README_MISSING_SYSCALL_OR_IOCTL. ./src/platform/tests/test-cleanup-linux.valgrind-log:--48279-- Nevertheless we consider this a bug. Please report ./src/platform/tests/test-cleanup-linux.valgrind-log:--48279-- it at http://valgrind.org/support/bug_reports.html. Ignore them. (cherry picked from commit 2cb40f6e36ce8db8257b07e15fe1bb9a47ce64f3) (cherry picked from commit 561bd7bba6eea54706100d0044e6f47620a08755) --- tools/run-nm-test.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tools/run-nm-test.sh b/tools/run-nm-test.sh index 11c9e17a0b..be9f2fc20d 100755 --- a/tools/run-nm-test.sh +++ b/tools/run-nm-test.sh @@ -310,13 +310,19 @@ if [ $HAS_ERRORS -eq 0 ]; then # valgrind doesn't support setns syscall and spams the logfile. # hack around it... case "$TEST_NAME" in + 'test-acd' | \ + 'test-address-linux' | \ + 'test-cleanup-linux' | \ 'test-config' | \ 'test-link-linux' | \ - 'test-acd' | \ - 'test-service-providers' | \ + 'test-lldp' | \ + 'test-nm-client' | \ + 'test-platform-general' | \ 'test-remote-settings-client' | \ + 'test-route-linux' | \ 'test-secret-agent' | \ - 'test-nm-client' ) + 'test-service-providers' | \ + 'test-tc-linux' ) if [ -z "$(sed -e '/^--[0-9]\+-- WARNING: unhandled .* syscall: /,/^--[0-9]\+-- it at http.*\.$/d' "$LOGFILE")" ]; then HAS_ERRORS=1 fi -- GitLab