summaryrefslogtreecommitdiffhomepage
path: root/test/unit.py
diff options
context:
space:
mode:
authorAndrey Zelenkov <zelenkov@nginx.com>2019-02-20 20:28:29 +0300
committerAndrey Zelenkov <zelenkov@nginx.com>2019-02-20 20:28:29 +0300
commit955050aea3148595fde027319fd427369856ebc9 (patch)
treea5d736ae16fa11f95f27f3137427ce67ff6a01a8 /test/unit.py
parent09fb847cc731d133b2016ff6982ab95aa43794ca (diff)
downloadunit-955050aea3148595fde027319fd427369856ebc9.tar.gz
unit-955050aea3148595fde027319fd427369856ebc9.tar.bz2
Tests: skip sendmsg()/recvmsg() alerts for all tests.
Currently, these alerts may appear in the log when any application exits.
Diffstat (limited to '')
-rw-r--r--test/unit.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unit.py b/test/unit.py
index 2af3e8f6..80e26e0d 100644
--- a/test/unit.py
+++ b/test/unit.py
@@ -179,7 +179,8 @@ class TestUnit(unittest.TestCase):
self._started = True
- self.skip_alerts = [r'read signalfd\(4\) failed']
+ self.skip_alerts = [r'read signalfd\(4\) failed', r'sendmsg.+failed',
+ r'recvmsg.+failed']
self.skip_sanitizer = False
def _stop(self):