Build: #3 failed
Job: Build and Package ManyLinux 2014 failed
mpi flagdata list return: Test case result
The below summarizes the result of the test " mpi flagdata list return" in build 3 of CASA - CMake MPI - Build and Package ManyLinux 2014.
- Description
- mpi flagdata list return
- Test class
- src.casampi.tests.test_casampi.test_mpi_flagdata
- Method
- test_mpi_flagdata_list_return
- Duration
- < 1 sec
- Status
- Failed (New Failure)
Error Log
RuntimeError: MPI is not enabled. To use the MPI client this process needs to be run as an MPI program, under mpiexec, mpirun or similar
self = <casampi.tests.test_casampi.test_mpi_flagdata testMethod=test_mpi_flagdata_list_return>
def setUp(self):
self.vis = "Four_ants_3C286.mms"
setUpFile(self.vis,'vis')
# Tmp files
self.vis2 = self.vis + '.2'
self.vis3 = self.vis + '.3'
# Set up cluster
> self.client = MPICommandClient()
/casampi/src/casampi/tests/test_casampi.py:1333:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <casampi.MPICommandClient.MPICommandClient object at 0x7f90c1c3c280>
start_services = False
def __init__(self,start_services=False):
""" Create MPICommandClient singleton instance """
casalog_call_origin = "MPICommandClient::__init__"
# Check if MPI is effectively enabled
if not MPIEnvironment.is_mpi_enabled:
msg = ('MPI is not enabled. To use the MPI client this process needs to be run '
'as an MPI program, under mpiexec, mpirun or similar')
casalog.post(msg, 'SEVERE', casalog_call_origin)
> raise RuntimeError(msg)
E RuntimeError: MPI is not enabled. To use the MPI client this process needs to be run as an MPI program, under mpiexec, mpirun or similar
/casampi/src/casampi/MPICommandClient.py:53: RuntimeError