(self)
| 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): |
nothing calls this directly
no outgoing calls
no test coverage detected