MCPcopy Create free account
hub / github.com/mpi4py/mpi4py / testAddErrorClass

Method testAddErrorClass

test/test_errorcode.py:70–79  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

68
69 @unittest.skipMPI("openmpi(<1.10.0)")
70 def testAddErrorClass(self):
71 try:
72 errclass = MPI.Add_error_class()
73 except NotImplementedError:
74 self.skipTest("mpi-add_error_class")
75 self.assertGreaterEqual(errclass, MPI.ERR_LASTCODE)
76 try:
77 MPI.Remove_error_class(errclass)
78 except NotImplementedError:
79 pass
80
81 @unittest.skipMPI("openmpi(<1.10.0)")
82 def testAddErrorCode(self):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected