[mpich-commits] [mpich] MPICH primary repository branch, master, updated. v3.1b1-74-g2c27bbf
mysql vizuser
noreply at mpich.org
Sun Sep 29 11:34:59 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 2c27bbf509fcd03c6bc4ab864442f9e3d337f713 (commit)
from 5843db8395af2574ac43a9b063f5d8bff5abd748 (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/2c27bbf509fcd03c6bc4ab864442f9e3d337f713
commit 2c27bbf509fcd03c6bc4ab864442f9e3d337f713
Author: William Gropp <wgropp at illinois.edu>
Date: Tue Sep 24 12:51:14 2013 -0500
Check for other Testmpio locations
Signed-off-by: Rob Latham <robl at mcs.anl.gov>
diff --git a/maint/checkbuilds.in b/maint/checkbuilds.in
index f3ea30a..724dcfc 100644
--- a/maint/checkbuilds.in
+++ b/maint/checkbuilds.in
@@ -815,12 +815,21 @@ sub RunTestMPIOSuite {
$rc = chdir $testmpio_test_dir;
if (!$rc) {
- #print STDERR "Cannot change to $testmpio_test_dir\n";
+ print $OUTFD "Cannot change to $testmpio_test_dir\n";
return;
}
- # Switch to using the checked-in version of the Intel test
- $config[$nargs++] = "$projects_dir/testmpio/configure";
+ # Switch to using the checked-in version of the Testmpio test
+ if (-x "$projects_dir/testmpio/configure") {
+ $config[$nargs++] = "$projects_dir/testmpio/configure";
+ }
+ elsif (-x "$projects_dir/Testmpio/configure") {
+ $config[$nargs++] = "$projects_dir/Testmpio/configure";
+ }
+ else {
+ print $OUTFD "Cannot find testmpio source directory!";
+ return;
+ }
$config[$nargs++] = "--enable-xml";
$config[$nargs++] = "CC=$instdir/bin/mpicc";
$config[$nargs++] = "MPIEXEC=$instdir/bin/mpiexec";
-----------------------------------------------------------------------
Summary of changes:
maint/checkbuilds.in | 15 ++++++++++++---
1 files changed, 12 insertions(+), 3 deletions(-)
hooks/post-receive
--
MPICH primary repository
More information about the commits
mailing list