[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1rc2-8-g3396c1b
mysql vizuser
noreply at mpich.org
Wed Nov 20 14:01:19 CST 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 3396c1bf5d76beb428492e8c8b5f2595b6c507f4 (commit)
from 1638ed8836df3dea659412837080bc3e07b33b41 (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/3396c1bf5d76beb428492e8c8b5f2595b6c507f4
commit 3396c1bf5d76beb428492e8c8b5f2595b6c507f4
Author: Ken Raffenetti <raffenet at mcs.anl.gov>
Date: Wed Nov 20 13:58:47 2013 -0600
fixup for 1638ed88
Patch contributed by IBM. The ordering of this test was causing an
issue in their builds.
diff --git a/test/mpi/configure.ac b/test/mpi/configure.ac
index 3ee5b77..134a025 100644
--- a/test/mpi/configure.ac
+++ b/test/mpi/configure.ac
@@ -356,14 +356,6 @@ if test "$enable_checkpointing" = "yes" ; then
fi
AC_SUBST(ckpointdir)
-AC_CHECK_SIZEOF(void *)
-# for tests that require large mem
-largetest="#"
-if test $ac_cv_sizeof_void_p -ge 8; then
- largetest=""
-fi
-AC_SUBST(largetest)
-
#
# Only run xfail tests if enabled
RUN_XFAIL=false
@@ -631,6 +623,14 @@ AC_TYPE_UINT64_T
# Check for availability of C99 types
AC_CHECK_TYPES([_Bool, float _Complex, double _Complex, long double _Complex])
+AC_CHECK_SIZEOF(void *,8)
+# for tests that require large mem
+largetest="#"
+if test $ac_cv_sizeof_void_p -ge 8; then
+ largetest=""
+fi
+AC_SUBST(largetest)
+
# Only run the long double complex tests if that type is available
if test "x$enable_long_double" = "xyes" && \
-----------------------------------------------------------------------
Summary of changes:
test/mpi/configure.ac | 16 ++++++++--------
1 files changed, 8 insertions(+), 8 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list