diff options
author | Max Romanov <max.romanov@nginx.com> | 2021-11-09 15:48:44 +0300 |
---|---|---|
committer | Max Romanov <max.romanov@nginx.com> | 2021-11-09 15:48:44 +0300 |
commit | 506ec2b8258cfe03d0d7e3b19eb79d1075a6174c (patch) | |
tree | ec619b5e7d8ce86903922593ff43e63d1a2f1264 /test/test_go_isolation.py | |
parent | e207415a78ae67b937faf7e5bcd6e5192993180a (diff) | |
download | unit-506ec2b8258cfe03d0d7e3b19eb79d1075a6174c.tar.gz unit-506ec2b8258cfe03d0d7e3b19eb79d1075a6174c.tar.bz2 |
Tests: app prototype related fixes.
Diffstat (limited to 'test/test_go_isolation.py')
-rw-r--r-- | test/test_go_isolation.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test_go_isolation.py b/test/test_go_isolation.py index 0530dfdf..72988a34 100644 --- a/test/test_go_isolation.py +++ b/test/test_go_isolation.py @@ -11,6 +11,10 @@ from unit.utils import getns class TestGoIsolation(TestApplicationGo): prerequisites = {'modules': {'go': 'any'}, 'features': ['isolation']} + @pytest.fixture(autouse=True) + def setup_method_fixture(self, request, skip_alert): + skip_alert(r'\[unit\] close\(\d+\) failed: Bad file descriptor') + def unpriv_creds(self): nobody_uid = pwd.getpwnam('nobody').pw_uid @@ -227,7 +231,7 @@ class TestGoIsolation(TestApplicationGo): obj = self.getjson()['body'] - assert obj['PID'] == 1, 'pid of container is 1' + assert obj['PID'] == 2, 'pid of container is 2' def test_isolation_namespace_false(self): self.load('ns_inspect') |