[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.2-9-gf0ee51d

Service Account noreply at mpich.org
Tue Nov 24 13:05:01 CST 2015


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  f0ee51dcf99276370c8f904d2150ce95a04e265f (commit)
      from  af235b20699a36d3aa884043d3dd52093809bd86 (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/f0ee51dcf99276370c8f904d2150ce95a04e265f

commit f0ee51dcf99276370c8f904d2150ce95a04e265f
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date:   Fri Nov 20 09:59:08 2015 -0600

    test/mpi/pt2pt/mprobe: remove temporary ifdefs
    
    Signed-off-by: Yanfei Guo <yguo at anl.gov>

diff --git a/test/mpi/pt2pt/mprobe.c b/test/mpi/pt2pt/mprobe.c
index 5804b18..e1c55c9 100644
--- a/test/mpi/pt2pt/mprobe.c
+++ b/test/mpi/pt2pt/mprobe.c
@@ -10,13 +10,6 @@
 #include "mpi.h"
 #include "mpitest.h"
 
-/* This is a temporary #ifdef to control whether we test this functionality.  A
- * configure-test or similar would be better.  Eventually the MPI-3 standard
- * will be released and this can be gated on a MPI_VERSION check */
-#if !defined(USE_STRICT_MPI) && defined(MPICH)
-#define TEST_MPROBE_ROUTINES 1
-#endif
-
 /* assert-like macro that bumps the err count and emits a message */
 #define check(x_)                                                                 \
     do {                                                                          \
@@ -38,9 +31,7 @@ int main(int argc, char **argv)
     int rank, size;
     int *sendbuf = NULL, *recvbuf = NULL;
     int count, i;
-#ifdef TEST_MPROBE_ROUTINES
     MPI_Message msg;
-#endif
     MPI_Request rreq;
     MPI_Status s1, s2;
     MPI_Datatype vectype;
@@ -60,7 +51,6 @@ int main(int argc, char **argv)
         goto epilogue;
     }
 
-#ifdef TEST_MPROBE_ROUTINES
     sendbuf = (int *) malloc(LARGE_SZ * sizeof(int));
     recvbuf = (int *) malloc(LARGE_SZ * sizeof(int));
     if (sendbuf == NULL || recvbuf == NULL) {
@@ -603,8 +593,6 @@ int main(int argc, char **argv)
         check(msg == MPI_MESSAGE_NULL);
     }
 
-#endif /* TEST_MPROBE_ROUTINES */
-
   epilogue:
     MPI_Reduce((rank == 0 ? MPI_IN_PLACE : &errs), &errs, 1, MPI_INT, MPI_SUM, 0, MPI_COMM_WORLD);
     if (rank == 0) {

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

Summary of changes:
 test/mpi/pt2pt/mprobe.c |   12 ------------
 1 files changed, 0 insertions(+), 12 deletions(-)


hooks/post-receive
-- 
MPICH primary repository


More information about the commits mailing list