diff options
| author | Sebastien Bacher <seb128@ubuntu.com> | 2020-03-13 16:27:57 +0100 |
|---|---|---|
| committer | Sebastien Bacher <seb128@ubuntu.com> | 2020-03-13 16:27:57 +0100 |
| commit | a46c3e57291e64e9258698dbe5b0ef11def833c5 (patch) | |
| tree | de9a6dcb3ab058a02fa0a2d9e7d1b3572b588583 /tools | |
| parent | 767904eab32f132502230df57e146cb822dad7ba (diff) | |
| parent | 19e73abd360f0198f94ce49f36ddf009056f6324 (diff) | |
Merge remote-tracking branch 'salsa/debian/master' into ubuntu/master
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/run-nm-test.sh | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/tools/run-nm-test.sh b/tools/run-nm-test.sh index 140236dc..21f0d7c1 100755 --- a/tools/run-nm-test.sh +++ b/tools/run-nm-test.sh @@ -295,12 +295,18 @@ fi if [ $HAS_ERRORS -eq 0 ]; then # valgrind doesn't support setns syscall and spams the logfile. # hack around it... - if [ "$TEST_NAME" = 'test-link-linux' -o \ - "$TEST_NAME" = 'test-acd' ]; then - if [ -z "$(sed -e '/^--[0-9]\+-- WARNING: unhandled .* syscall: /,/^--[0-9]\+-- it at http.*\.$/d' "$LOGFILE")" ]; then - HAS_ERRORS=1 - fi - fi + case "$TEST_NAME" in + 'test-link-linux' | \ + 'test-acd' | \ + 'test-service-providers' | \ + 'test-remote-settings-client' | \ + 'test-secret-agent' | \ + 'test-nm-client' ) + if [ -z "$(sed -e '/^--[0-9]\+-- WARNING: unhandled .* syscall: /,/^--[0-9]\+-- it at http.*\.$/d' "$LOGFILE")" ]; then + HAS_ERRORS=1 + fi + ;; + esac fi if [ $HAS_ERRORS -eq 0 ]; then |