diff options
| author | Michael Biebl <biebl@debian.org> | 2020-03-13 00:45:02 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2020-03-13 00:45:02 +0100 |
| commit | dae4785d3a29c5df3740c2676b400c0da1a72e3e (patch) | |
| tree | 9fe17185cbbcbd096c85e5973e1b909ae3f751e4 /tools | |
| parent | 3cbb3d6ecfef1076fc757632ee8327935250afee (diff) | |
| parent | b012fa6e1d808e0736c009799c62d835cbfcc1dd (diff) | |
Update upstream source from tag 'upstream/1.22.10'
Update to upstream version '1.22.10' with Debian dir df10a9f9ccf26e17902b3dc19a866a22c47764e8
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 |