@@ -23,8 +23,6 @@ def test_C_1x1():
2323 cmd = ('mpirun -np ' + str (num_procs ) + ' python pySDC/tutorial/step_7/C_pySDC_with_PETSc.py '
2424 + str (num_procs_space ) + ' ' + fname ).split ()
2525 p = subprocess .Popen (cmd , stdout = subprocess .PIPE , stderr = subprocess .PIPE , env = my_env , cwd = cwd )
26- stdout = p .communicate ()[0 ]
27- print ('STDOUT:{}' .format (stdout ))
2826 p .wait ()
2927 assert p .returncode == 0 , 'ERROR: did not get return code 0, got %s with %2i processes' % \
3028 (p .returncode , num_procs )
@@ -42,8 +40,6 @@ def test_C_1x2():
4240 cmd = ('mpirun -np ' + str (num_procs ) + ' python pySDC/tutorial/step_7/C_pySDC_with_PETSc.py '
4341 + str (num_procs_space ) + ' ' + fname ).split ()
4442 p = subprocess .Popen (cmd , stdout = subprocess .PIPE , stderr = subprocess .PIPE , env = my_env , cwd = cwd )
45- stdout = p .communicate ()[0 ]
46- print ('STDOUT:{}' .format (stdout ))
4743 p .wait ()
4844 assert p .returncode == 0 , 'ERROR: did not get return code 0, got %s with %2i processes' % \
4945 (p .returncode , num_procs )
@@ -61,8 +57,6 @@ def test_C_2x2():
6157 cmd = ('mpirun -np ' + str (num_procs ) + ' python pySDC/tutorial/step_7/C_pySDC_with_PETSc.py '
6258 + str (num_procs_space ) + ' ' + fname ).split ()
6359 p = subprocess .Popen (cmd , stdout = subprocess .PIPE , stderr = subprocess .PIPE , env = my_env , cwd = cwd )
64- stdout = p .communicate ()[0 ]
65- print ('STDOUT:{}' .format (stdout ))
6660 p .wait ()
6761 assert p .returncode == 0 , 'ERROR: did not get return code 0, got %s with %2i processes' % \
6862 (p .returncode , num_procs )
0 commit comments