@@ -120,7 +120,9 @@ class DeviceTest(unittest.TestCase):
@staticmethod
def test_query_port_bad_flow():
- """ Verify that querying non-existing ports fails as expected """
+ """
+ Verify that querying non-existing ports fails as expected
+ """
lst = d.get_device_list()
for dev in lst:
with d.Context(name=dev.name.decode()) as ctx:
@@ -199,7 +201,7 @@ class DMTest(PyverbsAPITestCase):
def test_destroy_dm_bad_flow(self):
"""
- test calling ibv_free_dm() twice
+ Test calling ibv_free_dm() twice
"""
for ctx, attr, attr_ex in self.devices:
if attr_ex.max_dm_size == 0:
@@ -32,7 +32,9 @@ class MRTest(PyverbsAPITestCase):
pass
def test_dereg_mr(self):
- """ Test ibv_dereg_mr() """
+ """
+ Test ibv_dereg_mr()
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
flags = u.get_access_flags(ctx)
@@ -42,7 +44,9 @@ class MRTest(PyverbsAPITestCase):
@staticmethod
def test_reg_mr_bad_flow():
- """ Verify that trying to register a MR with None PD fails """
+ """
+ Verify that trying to register a MR with None PD fails
+ """
try:
# Use the simplest access flags necessary
MR(None, random.randint(0, 10000), e.IBV_ACCESS_LOCAL_WRITE)
@@ -53,7 +57,9 @@ class MRTest(PyverbsAPITestCase):
raise PyverbsRDMAErrno('Created a MR with None PD')
def test_dereg_mr_twice(self):
- """ Verify that explicit call to MR's close() doesn't fails """
+ """
+ Verify that explicit call to MR's close() doesn't fail
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
flags = u.get_access_flags(ctx)
@@ -65,7 +71,9 @@ class MRTest(PyverbsAPITestCase):
mr.close()
def test_reg_mr_bad_flags(self):
- """ Verify that illegal flags combination fails as expected """
+ """
+ Verify that illegal flags combination fails as expected
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
for i in range(5):
@@ -159,35 +167,45 @@ class MWTest(PyverbsAPITestCase):
Test various functionalities of the MW class.
"""
def test_reg_mw_type1(self):
- """ Test ibv_alloc_mw() """
+ """
+ Test ibv_alloc_mw() for type 1 MW
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
with MW(pd, e.IBV_MW_TYPE_1):
pass
def test_reg_mw_type2(self):
- """ Test ibv_alloc_mw() """
+ """
+ Test ibv_alloc_mw() for type 2 MW
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
with MW(pd, e.IBV_MW_TYPE_2):
pass
def test_dereg_mw_type1(self):
- """ Test ibv_dealloc_mw() """
+ """
+ Test ibv_dealloc_mw() for type 1 MW
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
with MW(pd, e.IBV_MW_TYPE_1) as mw:
mw.close()
def test_dereg_mw_type2(self):
- """ Test ibv_dealloc_mw() """
+ """
+ Test ibv_dealloc_mw() for type 2 MW
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
with MW(pd, e.IBV_MW_TYPE_2) as mw:
mw.close()
def test_reg_mw_wrong_type(self):
- """ Test ibv_alloc_mw() """
+ """
+ Verify that trying to create a MW of a wrong type fails
+ """
for ctx, attr, attr_ex in self.devices:
with PD(ctx) as pd:
try:
When executed in verbose mode, unittest infrastructure prints a test's docstring if it's in a single line format, which was used in some tests. Change those to use multiline format instead. Signed-off-by: Noa Osherovich <noaos@mellanox.com> --- tests/test_device.py | 6 ++++-- tests/test_mr.py | 36 +++++++++++++++++++++++++++--------- 2 files changed, 31 insertions(+), 11 deletions(-)