[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1b1-129-g4bb837e

mysql vizuser noreply at mpich.org
Sun Oct 27 13:06:05 CDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "MPICH primary repository".

The branch, master has been updated
       via  4bb837e86e260c85f0a3b5f93e0c609e582b4c9d (commit)
      from  17878cdf4859f2d92dcae56e05bdea8a9eeb9bed (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.mpich.org/mpich.git/commitdiff/4bb837e86e260c85f0a3b5f93e0c609e582b4c9d

commit 4bb837e86e260c85f0a3b5f93e0c609e582b4c9d
Author: Pavan Balaji <balaji at mcs.anl.gov>
Date:   Sun Oct 27 10:26:36 2013 -0500

    Correct output format in the new impls/ test.
    
    Signed-off-by: Ken Raffenetti <raffenet at mcs.anl.gov>

diff --git a/test/mpi/impls/mpich/mpi_t/collparmt.c b/test/mpi/impls/mpich/mpi_t/collparmt.c
index 588a3f2..4f3b7e9 100644
--- a/test/mpi/impls/mpich/mpi_t/collparmt.c
+++ b/test/mpi/impls/mpich/mpi_t/collparmt.c
@@ -138,7 +138,14 @@ int main( int argc, char *argv[] )
     /* For full coverage, should address all parameters for collective
        algorithm selection */
 
-    if (wrank == 0) printf( "Errors = %d\n", errs );
+    if (wrank == 0) {
+        if (errs) {
+            printf("found %d errors\n", errs);
+        }
+        else {
+            printf(" No errors\n");
+        }
+    }
 
     MPI_T_finalize();
     MPI_Finalize();

-----------------------------------------------------------------------

Summary of changes:
 test/mpi/impls/mpich/mpi_t/collparmt.c |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list