[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1b1-31-g3cdefc7
mysql vizuser
noreply at mpich.org
Wed Aug 28 16:58:45 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 3cdefc7a2b9f0586bc0efe51bc5d3cb685d1f134 (commit)
from bf6d4d4d7b3877b2a8573590dd0c65ee4e5816e2 (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/3cdefc7a2b9f0586bc0efe51bc5d3cb685d1f134
commit 3cdefc7a2b9f0586bc0efe51bc5d3cb685d1f134
Author: Junchao Zhang <jczhang at mcs.anl.gov>
Date: Wed Aug 28 16:43:13 2013 -0500
Make mpi_t_str always fail when MPI_T is not done
Initialized a variable in mpi_t_str.c to a garbage value so that the test will
more easily trigger MPI_T implementation bugs.
Current MPI_T implementation is incorrect, so I also added the test to xfail.
diff --git a/test/mpi/mpi_t/mpi_t_str.c b/test/mpi/mpi_t/mpi_t_str.c
index cf1d5b2..547b0ba 100644
--- a/test/mpi/mpi_t/mpi_t_str.c
+++ b/test/mpi/mpi_t/mpi_t_str.c
@@ -48,7 +48,9 @@ int main(int argc, char **argv)
int bind;
int scope;
int provided;
- MPI_T_enum enumtype;
+
+ /* Init'ed to a garbage value, to trigger MPI_T bugs easily if there are. */
+ MPI_T_enum enumtype = (MPI_T_enum)0x31415926;
MPI_Init(&argc, &argv);
MPI_T_init_thread(MPI_THREAD_SINGLE, &provided);
diff --git a/test/mpi/mpi_t/testlist b/test/mpi/mpi_t/testlist
index bf17a1d..1426ac3 100644
--- a/test/mpi/mpi_t/testlist
+++ b/test/mpi/mpi_t/testlist
@@ -1 +1 @@
-mpi_t_str 1 mpiversion=3.0
+mpi_t_str 1 mpiversion=3.0 xfail=ticket1898
-----------------------------------------------------------------------
Summary of changes:
test/mpi/mpi_t/mpi_t_str.c | 4 +++-
test/mpi/mpi_t/testlist | 2 +-
2 files changed, 4 insertions(+), 2 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list