Re: [OMPI devel] OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-25 Thread Gilles Gouaillardet
Thanks Ralph ! i confirm my all test cases pass now :-) FYI, i commited r32592 in order to fix a parsing bug on 32bits platform (hence the mtt failures on trunk on x86) Cheers, Gilles On 2014/08/23 4:59, Ralph Castain wrote: > I think these are fixed now - at least, your test cases all pass

Re: [OMPI devel] OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-22 Thread Ralph Castain
I think these are fixed now - at least, your test cases all pass for me On Aug 22, 2014, at 9:12 AM, Ralph Castain wrote: > > On Aug 22, 2014, at 9:06 AM, Gilles Gouaillardet > wrote: > >> Ralph, >> >> Will do on Monday >> >> About the

Re: [OMPI devel] OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-22 Thread Ralph Castain
On Aug 22, 2014, at 9:06 AM, Gilles Gouaillardet wrote: > Ralph, > > Will do on Monday > > About the first test, in my case echo $? returns 0 My "showcode" is just an alias for the echo > I noticed this confusing message in your output : > mpirun noticed that

Re: [OMPI devel] OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-22 Thread Gilles Gouaillardet
Ralph, Will do on Monday About the first test, in my case echo $? returns 0 I noticed this confusing message in your output : mpirun noticed that process rank 0 with PID 24382 on node bend002 exited on signal 0 (Unknown signal 0). About the second test, please note my test program return 3;

Re: [OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-22 Thread Ralph Castain
You might want to try again with current head of trunk as something seems off in what you are seeing - more below On Aug 22, 2014, at 3:12 AM, Gilles Gouaillardet wrote: > Ralph, > > i tried again after the merge and found the same behaviour, though the >

Re: [OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-20 Thread Ralph Castain
I'm aware of the problem, but it will be fixed when the PMIx branch is merged later this week. On Aug 19, 2014, at 10:00 PM, Gilles Gouaillardet wrote: > Folks, > > let's look at the following trivial test program : > > #include > #include > > int main (int

[OMPI devel] MPI_Abort does not make mpirun return with the right exit code

2014-08-20 Thread Gilles Gouaillardet
Folks, let's look at the following trivial test program : #include #include int main (int argc, char * argv[]) { int rank, size; MPI_Init(, ); MPI_Comm_size(MPI_COMM_WORLD, ); MPI_Comm_rank(MPI_COMM_WORLD, ); printf ("I am %d/%d and i abort\n", rank, size);