()
| 10 | import traceback |
| 11 | |
| 12 | def _GetController(): |
| 13 | try: |
| 14 | from vtkmodules.vtkParallelMPI import vtkMPIController |
| 15 | controller = vtkMPIController(); |
| 16 | |
| 17 | # If MPI was not initialized, we do not want to use MPI |
| 18 | if not controller.GetCommunicator(): |
| 19 | return None |
| 20 | return controller |
| 21 | except: |
| 22 | pass |
| 23 | return None |
| 24 | |
| 25 | def main(test_script): |
| 26 | """Run a regression test, and compare the contents of the window against |
no test coverage detected