Skip to content

Commit 9b8a3ce

Browse files
committed
returning status
1 parent a166b0f commit 9b8a3ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pip-tests-mpi.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ calculated_sha1=$(sha1sum test.txt | awk '{ print $1 }')
66
echo $calculated_sha1
77
cat test.txt
88

9-
[ "$calculated_sha1" == "7737497b7e3e71d18034a9bdaad79b72f9ab80aa" ] && exit 0 || exit 1
9+
[ "$calculated_sha1" == "d94e03044bf06c7a42d07505b50fa58b4b30e49a" ] && exit 0 || exit 1
1010

examples/MPI_Tests/mpi_initialization_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@
1919

2020

2121
mpi_init = orbit_mpi.MPI_Initialized()
22-
print ("debug mpi is initialized =",mpi_init," should be not zero.")
2322

2423
rank = orbit_mpi.MPI_Comm_rank(mpi_comm.MPI_COMM_WORLD)
2524
size = orbit_mpi.MPI_Comm_size(mpi_comm.MPI_COMM_WORLD)
2625

2726
if(rank == 0):
27+
print("debug mpi is initialized =", mpi_init, " should be not zero.")
2828
print ("debug there should only one line like this rank=",rank," N CPUs = ",size)
2929

3030
n_particles = 10

0 commit comments

Comments
 (0)