Tests: test_settings_send_timeout improved.

Data length adjusts depending on socket buffer size when it's possible.
This commit is contained in:
Andrei Zeliankou
2021-05-24 05:26:15 +01:00
parent c160ea11e4
commit 1154ede862
3 changed files with 34 additions and 8 deletions

View File

@@ -61,6 +61,17 @@ def findmnt():
return out
def sysctl():
try:
out = subprocess.check_output(
['sysctl', '-a'], stderr=subprocess.STDOUT
).decode()
except FileNotFoundError:
pytest.skip('requires sysctl')
return out
def waitformount(template, wait=50):
for i in range(wait):
if findmnt().find(template) != -1: