commits
Threads by month
- ----- 2026 -----
- July
- June
- May
- April
- March
- February
- January
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
April 2013
- 1 participants
- 43 discussions
[mpich] MPICH primary repository branch, master, updated. v3.0.3-20-g89fb23e
by noreply@mpich.org 17 Apr '13
by noreply@mpich.org 17 Apr '13
17 Apr '13
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 89fb23ebb2ae5af69d75fb75e590c4c57e81d238 (commit)
from baaea3c6d08c7f248b6c94aff1dcc5332402428c (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/89fb23ebb2ae5af69d75fb75e590c4c57…
commit 89fb23ebb2ae5af69d75fb75e590c4c57e81d238
Author: James Dinan <dinan(a)mcs.anl.gov>
Date: Wed Apr 17 09:59:55 2013 -0500
Squash ARMCI-MPI build warnings
diff --git a/src/armci/src/buffer.c b/src/armci/src/buffer.c
index f69bb5d..d34be31 100644
--- a/src/armci/src/buffer.c
+++ b/src/armci/src/buffer.c
@@ -309,7 +309,7 @@ int ARMCII_Buf_acc_is_scaled(int datatype, void *scale) {
*/
void ARMCII_Buf_acc_scale(void *buf_in, void *buf_out, int size, int datatype, void *scale) {
int j, nelem;
- int type_size;
+ int type_size = -1;
MPI_Datatype type;
switch (datatype) {
diff --git a/src/armci/src/parmci.c b/src/armci/src/parmci.c
index 69ab556..d7d3e4c 100644
--- a/src/armci/src/parmci.c
+++ b/src/armci/src/parmci.c
@@ -49,27 +49,32 @@ int ARMCI_Free_local(void *ptr) {
#pragma weak ARMCI_Barrier
void ARMCI_Barrier(void) {
- return PARMCI_Barrier();
+ PARMCI_Barrier();
+ return;
}
#pragma weak ARMCI_Fence
void ARMCI_Fence(int proc) {
- return PARMCI_Fence(proc);
+ PARMCI_Fence(proc);
+ return;
}
#pragma weak ARMCI_AllFence
void ARMCI_AllFence(void) {
- return PARMCI_AllFence();
+ PARMCI_AllFence();
+ return;
}
#pragma weak ARMCI_Access_begin
void ARMCI_Access_begin(void *ptr) {
- return PARMCI_Access_begin(ptr);
+ PARMCI_Access_begin(ptr);
+ return;
}
#pragma weak ARMCI_Access_end
void ARMCI_Access_end(void *ptr) {
- return PARMCI_Access_end(ptr);
+ PARMCI_Access_end(ptr);
+ return;
}
#pragma weak ARMCI_Get
@@ -259,12 +264,14 @@ int ARMCI_Destroy_mutexes(void) {
#pragma weak ARMCI_Lock
void ARMCI_Lock(int mutex, int proc) {
- return PARMCI_Lock(mutex, proc);
+ PARMCI_Lock(mutex, proc);
+ return;
}
#pragma weak ARMCI_Unlock
void ARMCI_Unlock(int mutex, int proc) {
- return PARMCI_Unlock(mutex, proc);
+ PARMCI_Unlock(mutex, proc);
+ return;
}
#pragma weak ARMCI_Rmw
@@ -274,12 +281,14 @@ int ARMCI_Rmw(int op, void *ploc, void *prem, int value, int proc) {
#pragma weak armci_msg_barrier
void armci_msg_barrier(void) {
- return parmci_msg_barrier();
+ parmci_msg_barrier();
+ return;
}
#pragma weak armci_msg_group_barrier
void armci_msg_group_barrier(ARMCI_Group *group) {
- return parmci_msg_group_barrier(group);
+ parmci_msg_group_barrier(group);
+ return;
}
#endif
-----------------------------------------------------------------------
Summary of changes:
src/armci/src/buffer.c | 2 +-
src/armci/src/parmci.c | 27 ++++++++++++++++++---------
2 files changed, 19 insertions(+), 10 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-19-gbaaea3c
by noreply@mpich.org 12 Apr '13
by noreply@mpich.org 12 Apr '13
12 Apr '13
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 baaea3c6d08c7f248b6c94aff1dcc5332402428c (commit)
from c20d8550c61f6e08d07bdb8719f56a6c239570d8 (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/baaea3c6d08c7f248b6c94aff1dcc5332…
commit baaea3c6d08c7f248b6c94aff1dcc5332402428c
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Fri Apr 12 14:56:05 2013 -0500
add `pipestatus` shell helper
This will simplify some of our Jenkins configurations. All this commit
does is stash a copy of `pipestatus` in `maint` from
https://github.com/cheusov/pipestatus.
No reviewer.
diff --git a/maint/pipestatus b/maint/pipestatus
new file mode 100755
index 0000000..70b4d81
--- /dev/null
+++ b/maint/pipestatus
@@ -0,0 +1,164 @@
+# -*- mode: sh; -*-
+
+#
+# Public domain
+#
+# Written by Aleksey Cheusov <vle(a)gmx.net>
+# based on the code from FAQ of comp.unix.shell newsgroup
+#
+# Set of shell functions for running pipe and checking
+# exit status of ALL programs, not only last one.
+#
+# Version 0.6.0
+#
+
+#
+__shquote (){
+ __cmd=`printf '%s\n' "$1" | sed "s|'|'\\\\\''|g"`
+ printf "%s\n" "'$__cmd'"
+}
+
+__pipestatus_err_msg (){
+ if test "$PIPESTATUS_VERBOSE"; then
+ echo "Pipe failed, pipestatus_all='$pipestatus_all'" 1>&2
+ fi
+}
+
+# run pipe and set pipestatus_1, pipestatus_2, ... and pipesize variables
+# Example: runpipe_base prog1 arg11 arg12 '|' prog2 arg21 arg22 '|' prog3
+# Always return zero exit status
+runpipe_base (){
+ #
+ pipesize=0
+
+ # whole command
+ __pipestatus_com=
+
+ # token count
+ __pipestatus_k=1
+
+ # program in pipe (between |)
+ __pipestatus_l=
+
+ # counter
+ __pipestatus_j=1
+
+ # generating whole command
+ for __pipestatus_a in "$@"; do
+ if [ "_$__pipestatus_a" = '_|' ]; then
+ __pipestatus_com="$__pipestatus_com {
+ if $__pipestatus_l 3>&-"'; then
+ echo "pipestatus_'$__pipestatus_j'=0" 1>&3
+ else
+ echo "pipestatus_'$__pipestatus_j'=$?" 1>&3
+ fi
+} 4>&- |
+'
+ __pipestatus_j=`expr $__pipestatus_j + 1`
+ __pipestatus_l=
+ else
+ __pipestatus_l="$__pipestatus_l `__shquote \"$__pipestatus_a\"`"
+ fi
+ __pipestatus_k=`expr $__pipestatus_k + 1`
+ done
+ __pipestatus_com="if $__pipestatus_com $__pipestatus_l 3>&- 1>&4 4>&-"'; then
+ echo "pipestatus_'"$__pipestatus_j"'=0"
+ else
+ echo "pipestatus_'"$__pipestatus_j"'=$?"
+ fi'
+
+ #
+# echo "$__pipestatus_com"
+
+ # '|| true' - trick for 'set -e'
+ exec 4>&1
+ eval `exec 3>&1; eval "$__pipestatus_com" || true`
+ exec 4>&-
+
+ #
+ pipesize=$__pipestatus_j
+
+ # pipestatus_all
+ __pipestatus_j=2
+ pipestatus_all=$pipestatus_1
+ while [ "$__pipestatus_j" -le "$pipesize" 2>/dev/null ]; do
+ eval "pipestatus_all=\"$pipestatus_all \$pipestatus_$__pipestatus_j\""
+ __pipestatus_j=`expr $__pipestatus_j + 1`
+ done
+
+ return 0
+}
+
+# returns zero exit status if ALL progs in pipe return zero
+check_status0 (){
+ __pipestatus_j=1
+ while [ "$__pipestatus_j" -le "$pipesize" ]; do
+ eval "[ \$pipestatus_$__pipestatus_j -eq 0 ]" || {
+ __pipestatus_err_msg
+ return 1
+ }
+ __pipestatus_j=`expr $__pipestatus_j + 1`
+ done
+
+ return 0
+}
+
+# returns zero exit status if ALL progs in pipe return zero
+runpipe0 (){
+ runpipe_base "$@"
+ check_status0
+}
+
+# match all statuses with the pattern
+# example: check_status_re '0 . 0'
+# . means "any status"
+check_status_re (){
+ __pipestatus_re=`echo $1 | sed 's/[.]/[0-9][0-9]*/g'`
+ __pipestatus_j=1
+ __pipestatus_ps=
+ while [ "$__pipestatus_j" -le "$pipesize" ]; do
+ eval '__pipestatus_ps="$__pipestatus_ps ${pipestatus_'$__pipestatus_j'}"'
+ __pipestatus_j=`expr $__pipestatus_j + 1`
+ done
+
+ # trick for set -e
+ if echo "$__pipestatus_ps" | grep -E "^ $__pipestatus_re"'$' > /dev/null
+ then
+ __pipestatus_ret=0
+ else
+ __pipestatus_ret=$?
+ __pipestatus_err_msg
+ fi
+
+ # egrep not found?
+ case "$__pipestatus_ret" in
+ 0|1)
+ ;;
+ *)
+ exit 2; # fatal error with egrep
+ esac
+
+ return $__pipestatus_ret
+}
+
+# match all statuses with the pattern
+# example: runpipe_re '0 . 0' prog1 '|' prog2 '|' prog3
+# . means "any status"
+runpipe_re (){
+ __pipestatus_re="$1"
+ shift
+
+ runpipe_base "$@"
+ check_status_re "$__pipestatus_re"
+}
+
+# return exit code of the last program in pipe
+check_status (){
+ eval return '$pipestatus_'${pipesize}
+}
+
+# similar to plain pipe but set 'pipestatus_XX' and 'pipesize' variables
+runpipe (){
+ runpipe_base "$@"
+ check_status
+}
-----------------------------------------------------------------------
Summary of changes:
maint/pipestatus | 164 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 164 insertions(+), 0 deletions(-)
create mode 100755 maint/pipestatus
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-18-gc20d855
by noreply@mpich.org 11 Apr '13
by noreply@mpich.org 11 Apr '13
11 Apr '13
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 c20d8550c61f6e08d07bdb8719f56a6c239570d8 (commit)
from 38fb9ec634e018b373513d0014029c3ead06ed4e (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/c20d8550c61f6e08d07bdb8719f56a6c2…
commit c20d8550c61f6e08d07bdb8719f56a6c239570d8
Author: Pavan Balaji <balaji(a)mcs.anl.gov>
Date: Tue Apr 9 06:56:17 2013 -0500
Improvements to the release.pl script.
1. The release.pl creation script now takes a remote git repository as
an argument instead of a local clone. This allows this script to be
standalone and not rely on the copy used by the nightly scripts.
2. Allow release.pl to abort if no recent commits have been pushed to
the repository.
3. Simultaneously create both the main tarball as well as the hydra
tarball.
4. Renames of some arguments to better match what they are referring
to.
Reviewed by goodell.
diff --git a/maint/release.pl b/maint/release.pl
index 6b9db94..be42bac 100755
--- a/maint/release.pl
+++ b/maint/release.pl
@@ -19,17 +19,18 @@ use Getopt::Long;
use File::Temp qw( tempdir );
my $arg = 0;
-my $source = "";
-my $psource = "";
+my $branch = "";
+my $pbranch = "";
my $version = "";
my $append_commit_id;
+my $since = "";
my $root = cwd();
my $with_autoconf = "";
my $with_automake = "";
-my $git_repo_path = ".";
+my $remote_git_repo = "";
# Default to MPICH
-my $pack = "mpich";
+my $prefix = "mpich";
my $logfile = "release.log";
@@ -38,19 +39,14 @@ sub usage
print "Usage: $0 [OPTIONS]\n\n";
print "OPTIONS:\n";
- print "\t--source git tree-ish specifying source to be packaged\n";
- print "\t--psource git tree-ish for the previous version source for ABI compliance (required)\n";
+ print "\t--branch git branch to be packaged (required)\n";
+ print "\t--pbranch git previous version branch for ABI compliance (required)\n";
+ print "\t--version tarball version (required)\n";
+ print "\t--remote-git-repo path to root of the git repository (required)\n";
- # what package we are creating
- print "\t--package package to create (optional)\n";
-
- # version string associated with the tarball
- print "\t--version tarball version (required)\n";
-
- # append a valid git commit ID (SHA1 or git-describe output)
+ print "\t--prefix package prefix to use (optional)\n";
print "\t--append-commit-id append git commit ID (optional)\n";
-
- print "\t--git-repository path to root of the git repository\n";
+ print "\t--newer-than date (optional)\n";
print "\n";
@@ -139,14 +135,15 @@ sub run_cmd
}
GetOptions(
- "source=s" => \$source,
- "psource=s" => \$psource,
- "package:s" => \$pack,
+ "branch=s" => \$branch,
+ "pbranch=s" => \$pbranch,
+ "prefix:s" => \$prefix,
"version=s" => \$version,
"append-commit-id!" => \$append_commit_id,
+ "newer-than=s" => \$since,
"with-autoconf" => \$with_autoconf,
"with-automake" => \$with_automake,
- "git-repository=s" => \$git_repo_path,
+ "remote-git-repo=s" => \$remote_git_repo,
"help" => \&usage,
# old deprecated args, retained with usage() to help catch non-updated cron
@@ -158,7 +155,7 @@ if (scalar(@ARGV) != 0) {
usage();
}
-if (!$source || !$version || !$psource) {
+if (!$branch || !$version || !$pbranch) {
usage();
}
@@ -178,42 +175,61 @@ check_autotools_version("automake", "1.12.4");
check_autotools_version("libtool", "2.4.2");
print("\n");
-# chdirs to $git_repo_path if valid
-check_git_repo($git_repo_path);
+
+my $tdir = tempdir(CLEANUP => 1);
+my $local_git_clone = "${tdir}/${prefix}-clone";
+
+
+# clone git repo
+print("===> Cloning git repo... ");
+run_cmd("git clone ${remote_git_repo} ${local_git_clone}");
+print("done\n");
+
+# chdirs to $local_git_clone if valid
+check_git_repo($local_git_clone);
print("\n");
-my $current_ver = `git show ${source}:maint/version.m4 | grep MPICH_VERSION_m4 | \
+if ($since) {
+ # If there have been no commits in the past some amount of time,
+ # do not create a tarball
+ if (!(`git log --since='$since' ${branch}`)) {
+ chdir("${tdir}/..");
+ print "No recent commits found... aborting\n";
+ exit;
+ }
+}
+
+my $current_ver = `git show ${branch}:maint/version.m4 | grep MPICH_VERSION_m4 | \
sed -e 's/^.*\\[MPICH_VERSION_m4\\],\\[\\(.*\\)\\].*/\\1/g'`;
if ("$current_ver" ne "$version\n") {
print("\tWARNING: Version mismatch\n\n");
}
-if ($psource) {
+if ($pbranch) {
# Check diff
- my $d = `git diff ${psource}:src/include/mpi.h.in ${source}:src/include/mpi.h.in`;
- $d .= `git diff ${psource}:src/binding ${source}:src/binding`;
+ my $d = `git diff ${pbranch}:src/include/mpi.h.in ${branch}:src/include/mpi.h.in`;
+ $d .= `git diff ${pbranch}:src/binding ${branch}:src/binding`;
if ("$d" ne "") {
print("\tWARNING: ABI mismatch\n\n");
}
}
if ($append_commit_id) {
- my $desc = `git describe --always ${source}`;
+ my $desc = `git describe --always ${branch}`;
chomp $desc;
$version .= "-${desc}";
}
-my $tdir = tempdir(CLEANUP => 1);
+my $expdir = "${tdir}/${prefix}-${version}";
# Clean up the log file
system("rm -f ${root}/$logfile");
-# Check out the appropriate source
-print("===> Exporting $pack source from git... ");
-run_cmd("rm -rf ${pack}-${version}");
-my $expdir = "${tdir}/${pack}-${version}";
+# Check out the appropriate branch
+print("===> Exporting code from git... ");
+run_cmd("rm -rf ${expdir}");
run_cmd("mkdir -p ${expdir}");
-run_cmd("git archive ${source} --prefix='${pack}-${version}/' | tar -x -C $tdir");
+run_cmd("git archive ${branch} --prefix='${prefix}-${version}/' | tar -x -C $tdir");
print("done\n");
print("===> Create release date and version information... ");
@@ -226,8 +242,8 @@ system(qq(perl -p -i -e 's/\\[MPICH_RELEASE_DATE_m4\\],\\[unreleased development
# above modifications
print("done\n");
-# Remove packages that are not being released
-print("===> Removing packages that are not being released... ");
+# Remove content that is not being released
+print("===> Removing content that is not being released... ");
chdir($expdir);
run_cmd("rm -rf doc/notes src/pm/mpd/Zeroconf.py");
@@ -241,7 +257,7 @@ for my $module (@nem_modules) {
print("done\n");
# Create configure
-print("===> Creating configure in the main package... ");
+print("===> Creating configure in the main codebase... ");
chdir($expdir);
{
my $cmd = "./autogen.sh";
@@ -252,7 +268,7 @@ chdir($expdir);
print("done\n");
# Disable unnecessary tests in the release tarball
-print("===> Disabling unnecessary tests in the main package... ");
+print("===> Disabling unnecessary tests in the main codebase... ");
chdir($expdir);
run_cmd("perl -p -i -e 's/^\@perfdir\@\$/#\@perfdir\@/' test/mpi/testlist.in");
run_cmd("perl -p -i -e 's/^large_message /#large_message /' test/mpi/pt2pt/testlist");
@@ -260,18 +276,18 @@ run_cmd("perl -p -i -e 's/^large-count /#large-count /' test/mpi/datatype/testli
print("done\n");
# Remove unnecessary files
-print("===> Removing unnecessary files in the main package... ");
+print("===> Removing unnecessary files in the main codebase... ");
chdir($expdir);
run_cmd("rm -rf README.vin maint/config.log maint/config.status unusederr.txt");
run_cmd("find . -name autom4te.cache | xargs rm -rf");
print("done\n");
# Get docs
-print("===> Creating secondary package for the docs... ");
+print("===> Creating secondary codebase for the docs... ");
run_cmd("cp -a ${expdir} ${expdir}-tmp");
print("done\n");
-print("===> Configuring and making the secondary package... ");
+print("===> Configuring and making the secondary codebase... ");
chdir("${expdir}-tmp");
{
my $cmd = "./autogen.sh";
@@ -302,12 +318,18 @@ run_cmd("make");
run_cmd("rm -f users-guide.blg users-guide.toc users-guide.aux users-guide.bbl users-guide.log users-guide.dvi");
print("done\n");
-# Create the tarball
-print("===> Creating the final ${pack} tarball... ");
+# Create the main tarball
+print("===> Creating the final ${prefix} tarball... ");
chdir("${tdir}");
-run_cmd("tar -czvf ${pack}-${version}.tar.gz ${pack}-${version}");
-run_cmd("rm -rf ${expdir}");
-run_cmd("cp -a ${pack}-${version}.tar.gz ${root}/");
+run_cmd("tar -czvf ${prefix}-${version}.tar.gz ${prefix}-${version}");
+run_cmd("cp -a ${prefix}-${version}.tar.gz ${root}/");
+print("done\n");
+
+# Create the hydra tarball
+print("===> Creating the final hydra tarball... ");
+run_cmd("cp -a ${expdir}/src/pm/hydra hydra-${version}");
+run_cmd("tar -czvf hydra-${version}.tar.gz hydra-${version}");
+run_cmd("cp -a hydra-${version}.tar.gz ${root}/");
print("done\n\n");
# make sure we are outside of the tempdir so that the CLEANUP logic can run
-----------------------------------------------------------------------
Summary of changes:
maint/release.pl | 112 ++++++++++++++++++++++++++++++++----------------------
1 files changed, 67 insertions(+), 45 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-17-g38fb9ec
by noreply@mpich.org 09 Apr '13
by noreply@mpich.org 09 Apr '13
09 Apr '13
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 38fb9ec634e018b373513d0014029c3ead06ed4e (commit)
from 7fdbaab175b2d5aecfa2e2ed5fbc80f901293454 (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/38fb9ec634e018b373513d0014029c3ea…
commit 38fb9ec634e018b373513d0014029c3ead06ed4e
Author: Pavan Balaji <balaji(a)mcs.anl.gov>
Date: Tue Apr 9 05:38:03 2013 -0500
Fix typo introduced in dd76a0f that's causing the nightly tests to
fail.
No reviewer.
diff --git a/maint/release.pl b/maint/release.pl
index 2cf3ab4..6b9db94 100755
--- a/maint/release.pl
+++ b/maint/release.pl
@@ -254,7 +254,7 @@ print("done\n");
# Disable unnecessary tests in the release tarball
print("===> Disabling unnecessary tests in the main package... ");
chdir($expdir);
-run_cmd("perl -p -i -e 's/^@perfdir@\$/#@perfdir@/' test/mpi/testlist.in");
+run_cmd("perl -p -i -e 's/^\@perfdir\@\$/#\@perfdir\@/' test/mpi/testlist.in");
run_cmd("perl -p -i -e 's/^large_message /#large_message /' test/mpi/pt2pt/testlist");
run_cmd("perl -p -i -e 's/^large-count /#large-count /' test/mpi/datatype/testlist");
print("done\n");
-----------------------------------------------------------------------
Summary of changes:
maint/release.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-16-g7fdbaab
by noreply@mpich.org 08 Apr '13
by noreply@mpich.org 08 Apr '13
08 Apr '13
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 7fdbaab175b2d5aecfa2e2ed5fbc80f901293454 (commit)
from 4e03a16f9c9318b5a1ff0aed7be223ca4e5608e3 (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/7fdbaab175b2d5aecfa2e2ed5fbc80f90…
commit 7fdbaab175b2d5aecfa2e2ed5fbc80f901293454
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Mon Apr 8 23:03:27 2013 -0500
TAP: comply better with "TAP Version 13"
The "TAP Version 13" specification (normally available at
http://testanything.org/wiki/index.php/TAP_version_13_specification but
currently only available via the Wayback Machine) does not actually
permit spaces before a comment line.
It also requires a special string at the beginning of the file to
indicate that YAMLish should be expected. Otherwise, TAP::Parser will
pretend not to see the YAML blocks.
No reviewer.
diff --git a/test/mpi/runtests.in b/test/mpi/runtests.in
index 3dae546..dbe1f79 100644
--- a/test/mpi/runtests.in
+++ b/test/mpi/runtests.in
@@ -198,6 +198,7 @@ foreach $_ (@ARGV) {
open( TAPOUT, ">$tapfile" ) || die "Cannot open $tapfile\n";
my $date = `date "+%Y-%m-%d-%H-%M"`;
$date =~ s/\r?\n//;
+ print TAPOUT "TAP version 13\n";
print TAPOUT "# MPICH test suite results (TAP format)\n";
print TAPOUT "# date ${date}\n";
# we do not know at this point how many tests will be run, so do
@@ -1039,12 +1040,14 @@ sub RunTestFailed {
print TAPOUT " ...\n";
- # alternative to the "Output:" YAML block literal above
- print TAPOUT " ## Test output (expected 'No Errors'):\n";
+ # Alternative to the "Output:" YAML block literal above. Do not put any
+ # spaces before the '#', this causes some TAP parsers (including Perl's
+ # TAP::Parser) to treat the line as "unknown" instead of a proper
+ # comment.
+ print TAPOUT "## Test output (expected 'No Errors'):\n";
foreach my $line (split m/\r?\n/, $output) {
chomp $line;
- # 2 spaces for TAP indent
- print TAPOUT " ## $line\n";
+ print TAPOUT "## $line\n";
}
}
}
-----------------------------------------------------------------------
Summary of changes:
test/mpi/runtests.in | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-15-g4e03a16
by noreply@mpich.org 07 Apr '13
by noreply@mpich.org 07 Apr '13
07 Apr '13
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 4e03a16f9c9318b5a1ff0aed7be223ca4e5608e3 (commit)
from 34095c397c692cc1705cc005fe4ccc92dd263634 (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/4e03a16f9c9318b5a1ff0aed7be223ca4…
commit 4e03a16f9c9318b5a1ff0aed7be223ca4e5608e3
Author: Pavan Balaji <balaji(a)mcs.anl.gov>
Date: Sun Apr 7 21:32:24 2013 -0500
Added the per-communicator thresholds addition into the CHANGES file.
No reviewer.
diff --git a/CHANGES b/CHANGES
index 10f35dd..f459d6d 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,4 +1,17 @@
===============================================================================
+ Changes in 3.0.4
+===============================================================================
+
+ # OVERALL: Added support to manage per-communicator eager-rendezvous
+ thresholds.
+
+ # Several other minor bug fixes, memory leak fixes, and code cleanup.
+ A full list of changes is available at the following link:
+
+ http://git.mpich.org/mpich.git/shortlog/v3.0.3..v3.0.4
+
+
+===============================================================================
Changes in 3.0.3
===============================================================================
-----------------------------------------------------------------------
Summary of changes:
CHANGES | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-14-g34095c3
by noreply@mpich.org 07 Apr '13
by noreply@mpich.org 07 Apr '13
07 Apr '13
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 34095c397c692cc1705cc005fe4ccc92dd263634 (commit)
via dd76a0f2f90bf4d79ac75a5d4419e498f9770c30 (commit)
via 8fb17a1dc7a48d9695cf21aedf4f54b00da465e2 (commit)
from 3f38e1b9ff5ecc9a916aec41fb964c1cec2e3622 (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/34095c397c692cc1705cc005fe4ccc92d…
commit 34095c397c692cc1705cc005fe4ccc92dd263634
Author: Pavan Balaji <balaji(a)mcs.anl.gov>
Date: Sun Apr 7 10:12:41 2013 -0500
Fix English typos caught by the Debian lintian checks.
Reviewed by dinan.
diff --git a/src/env/mpicc.txt b/src/env/mpicc.txt
index 9ffaee4..2bff06c 100644
--- a/src/env/mpicc.txt
+++ b/src/env/mpicc.txt
@@ -11,7 +11,7 @@
Command line arguments:
+ -show - Show the commands that would be used without
- runnning them
+ running them
. -help - Give short help
. -cc=name - Use compiler 'name' instead of the default choice. Use
this only if the compiler is compatible with the MPICH
diff --git a/src/env/mpicxx.txt b/src/env/mpicxx.txt
index b83be4c..d3388e0 100644
--- a/src/env/mpicxx.txt
+++ b/src/env/mpicxx.txt
@@ -11,7 +11,7 @@
Command line arguments:
+ -show - Show the commands that would be used without
- runnning them
+ running them
. -help - Give short help
. -cxx=name - Use compiler 'name' instead of the default choice. Use
this only if the compiler is compatible with the MPICH
diff --git a/src/env/mpif77.txt b/src/env/mpif77.txt
index e00c586..c55f26e 100644
--- a/src/env/mpif77.txt
+++ b/src/env/mpif77.txt
@@ -11,7 +11,7 @@
Command line arguments:
+ -show - Show the commands that would be used without
- runnning them
+ running them
. -help - Give short help
. -f77=name - Use compiler 'name' instead of the default choice. Use
this only if the compiler is compatible with the MPICH
diff --git a/src/env/mpif90.txt b/src/env/mpif90.txt
index dd603c3..efedc29 100644
--- a/src/env/mpif90.txt
+++ b/src/env/mpif90.txt
@@ -11,7 +11,7 @@
Command line arguments:
+ -show - Show the commands that would be used without
- runnning them
+ running them
. -help - Give short help
. -f90=name - Use compiler 'name' instead of the default choice. Use
this only if the compiler is compatible with the MPICH
diff --git a/src/mpi/attr/attr_get.c b/src/mpi/attr/attr_get.c
index f1ad255..122ed46 100644
--- a/src/mpi/attr/attr_get.c
+++ b/src/mpi/attr/attr_get.c
@@ -46,7 +46,7 @@ Notes:
in with 'MPI_ATTR_PUT'. The notes for C and Fortran below explain why.
Notes for C:
- Even though the 'attribute_val' arguement is declared as 'void *', it is
+ Even though the 'attribute_val' argument is declared as 'void *', it is
really the address of a void pointer (i.e., a 'void **'). Using
a 'void *', however, is more in keeping with C idiom and allows the
pointer to be passed without additional casts.
diff --git a/src/mpi/attr/comm_create_keyval.c b/src/mpi/attr/comm_create_keyval.c
index 604b6a6..f145189 100644
--- a/src/mpi/attr/comm_create_keyval.c
+++ b/src/mpi/attr/comm_create_keyval.c
@@ -103,7 +103,7 @@ Default copy and delete functions are available. These are
There are subtle differences between C and Fortran that require that the
copy_fn be written in the same language from which 'MPI_Comm_create_keyval'
is called.
-This should not be a problem for most users; only programers using both
+This should not be a problem for most users; only programmers using both
Fortran and C in the same program need to be sure that they follow this rule.
.N AttrErrReturn
diff --git a/src/mpi/attr/comm_get_attr.c b/src/mpi/attr/comm_get_attr.c
index 87ca505..e998200 100644
--- a/src/mpi/attr/comm_get_attr.c
+++ b/src/mpi/attr/comm_get_attr.c
@@ -332,7 +332,7 @@ Output Parameters:
why.
Notes for C:
- Even though the 'attr_value' arguement is declared as 'void *', it is
+ Even though the 'attr_value' argument is declared as 'void *', it is
really the address of a void pointer. See the rationale in the
standard for more details.
diff --git a/src/mpi/attr/keyval_create.c b/src/mpi/attr/keyval_create.c
index ac69c3e..a65fc1a 100644
--- a/src/mpi/attr/keyval_create.c
+++ b/src/mpi/attr/keyval_create.c
@@ -46,7 +46,7 @@ Key values are global (available for any and all communicators).
There are subtle differences between C and Fortran that require that the
copy_fn be written in the same language that 'MPI_Keyval_create'
is called from.
-This should not be a problem for most users; only programers using both
+This should not be a problem for most users; only programmers using both
Fortran and C in the same program need to be sure that they follow this rule.
.N ThreadSafe
diff --git a/src/mpi/attr/type_get_attr.c b/src/mpi/attr/type_get_attr.c
index 1748e03..3d6a44f 100644
--- a/src/mpi/attr/type_get_attr.c
+++ b/src/mpi/attr/type_get_attr.c
@@ -170,7 +170,7 @@ Output Parameters:
why.
Notes for C:
- Even though the 'attr_value' arguement is declared as 'void *', it is
+ Even though the 'attr_value' argument is declared as 'void *', it is
really the address of a void pointer. See the rationale in the
standard for more details.
diff --git a/src/mpi/comm/comm_split.c b/src/mpi/comm/comm_split.c
index 1283227..d5f90da 100644
--- a/src/mpi/comm/comm_split.c
+++ b/src/mpi/comm/comm_split.c
@@ -381,7 +381,7 @@ Input Parameters:
+ comm - communicator (handle)
. color - control of subset assignment (nonnegative integer). Processes
with the same color are in the same new communicator
-- key - control of rank assigment (integer)
+- key - control of rank assignment (integer)
Output Parameters:
. newcomm - new communicator (handle)
diff --git a/src/mpi/comm/comm_split_type.c b/src/mpi/comm/comm_split_type.c
index aa5045e..47ca3fc 100644
--- a/src/mpi/comm/comm_split_type.c
+++ b/src/mpi/comm/comm_split_type.c
@@ -70,7 +70,7 @@ MPI_Comm_split_type - Creates new communicators based on split types and keys
Input Parameters:
+ comm - communicator (handle)
. split_type - type of processes to be grouped together (nonnegative integer).
-. key - control of rank assigment (integer)
+. key - control of rank assignment (integer)
- info - hints to improve communicator creation (handle)
Output Parameters:
diff --git a/src/mpi/errhan/errnames.txt b/src/mpi/errhan/errnames.txt
index 8e78c48..0633d3a 100644
--- a/src/mpi/errhan/errnames.txt
+++ b/src/mpi/errhan/errnames.txt
@@ -152,7 +152,7 @@ MPI_TYPECLASS_INTEGER, or MPI_TYPECLASS_COMPLEX
(precision=%d, range=%d) failed
**f90typetoomany:Too many requests for unnamed, predefined f90 types
**f90typeintnone: No integer type with the requested range is available
-**f90typeintnone %d: No integer type with %d digits of range is avaiable
+**f90typeintnone %d: No integer type with %d digits of range is available
**f90typerealnone: No real type with the requested range and/or precision \
is available
**f90typerealnone %d %d: No real type with both %d digits of precision \
diff --git a/src/mpi/pt2pt/startall.c b/src/mpi/pt2pt/startall.c
index 9763268..734f032 100644
--- a/src/mpi/pt2pt/startall.c
+++ b/src/mpi/pt2pt/startall.c
@@ -43,7 +43,7 @@ Input Parameters:
Unlike 'MPI_Waitall', 'MPI_Startall' does not provide a mechanism for
returning multiple errors nor pinpointing the request(s) involved.
- Futhermore, the behavior of 'MPI_Startall' after an error occurs is not
+ Furthermore, the behavior of 'MPI_Startall' after an error occurs is not
defined by the MPI standard. If well-defined error reporting and behavior
are required, multiple calls to 'MPI_Start' should be used instead.
diff --git a/src/mpi/romio/mpi-io/iread_at.c b/src/mpi/romio/mpi-io/iread_at.c
index 1837b4f..8e9b0b2 100644
--- a/src/mpi/romio/mpi-io/iread_at.c
+++ b/src/mpi/romio/mpi-io/iread_at.c
@@ -28,7 +28,7 @@
#endif
/*@
- MPI_File_iread_at - Nonblocking read using explict offset
+ MPI_File_iread_at - Nonblocking read using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/iwrite_at.c b/src/mpi/romio/mpi-io/iwrite_at.c
index 6cd0eeb..6974ed5 100644
--- a/src/mpi/romio/mpi-io/iwrite_at.c
+++ b/src/mpi/romio/mpi-io/iwrite_at.c
@@ -24,7 +24,7 @@
#endif
/*@
- MPI_File_iwrite_at - Nonblocking write using explict offset
+ MPI_File_iwrite_at - Nonblocking write using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/rd_atallb.c b/src/mpi/romio/mpi-io/rd_atallb.c
index aefea0e..44f54e4 100644
--- a/src/mpi/romio/mpi-io/rd_atallb.c
+++ b/src/mpi/romio/mpi-io/rd_atallb.c
@@ -24,7 +24,7 @@
#endif
/*@
- MPI_File_read_at_all_begin - Begin a split collective read using explict offset
+ MPI_File_read_at_all_begin - Begin a split collective read using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/rd_atalle.c b/src/mpi/romio/mpi-io/rd_atalle.c
index 5341327..0715e6a 100644
--- a/src/mpi/romio/mpi-io/rd_atalle.c
+++ b/src/mpi/romio/mpi-io/rd_atalle.c
@@ -25,7 +25,7 @@
/*@
MPI_File_read_at_all_end - Complete a split collective read using
- explict offset
+ explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/read_at.c b/src/mpi/romio/mpi-io/read_at.c
index 2fad79d..72e593d 100644
--- a/src/mpi/romio/mpi-io/read_at.c
+++ b/src/mpi/romio/mpi-io/read_at.c
@@ -25,7 +25,7 @@
/* status object not filled currently */
/*@
- MPI_File_read_at - Read using explict offset
+ MPI_File_read_at - Read using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/read_atall.c b/src/mpi/romio/mpi-io/read_atall.c
index 4763b1a..13932b1 100644
--- a/src/mpi/romio/mpi-io/read_atall.c
+++ b/src/mpi/romio/mpi-io/read_atall.c
@@ -26,7 +26,7 @@
/* status object not filled currently */
/*@
- MPI_File_read_at_all - Collective read using explict offset
+ MPI_File_read_at_all - Collective read using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/wr_atallb.c b/src/mpi/romio/mpi-io/wr_atallb.c
index cf1b3ba..07fe989 100644
--- a/src/mpi/romio/mpi-io/wr_atallb.c
+++ b/src/mpi/romio/mpi-io/wr_atallb.c
@@ -25,7 +25,7 @@
/*@
MPI_File_write_at_all_begin - Begin a split collective write using
- explict offset
+ explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/wr_atalle.c b/src/mpi/romio/mpi-io/wr_atalle.c
index 430945e..dc41651 100644
--- a/src/mpi/romio/mpi-io/wr_atalle.c
+++ b/src/mpi/romio/mpi-io/wr_atalle.c
@@ -24,7 +24,7 @@
#endif
/*@
- MPI_File_write_at_all_end - Complete a split collective write using explict offset
+ MPI_File_write_at_all_end - Complete a split collective write using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/write_at.c b/src/mpi/romio/mpi-io/write_at.c
index 63f3065..16980ff 100644
--- a/src/mpi/romio/mpi-io/write_at.c
+++ b/src/mpi/romio/mpi-io/write_at.c
@@ -25,7 +25,7 @@
/* status object not filled currently */
/*@
- MPI_File_write_at - Write using explict offset
+ MPI_File_write_at - Write using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpi/romio/mpi-io/write_atall.c b/src/mpi/romio/mpi-io/write_atall.c
index 82e207b..fda31ee 100644
--- a/src/mpi/romio/mpi-io/write_atall.c
+++ b/src/mpi/romio/mpi-io/write_atall.c
@@ -26,7 +26,7 @@
/* status object not filled currently */
/*@
- MPI_File_write_at_all - Collective write using explict offset
+ MPI_File_write_at_all - Collective write using explicit offset
Input Parameters:
. fh - file handle (handle)
diff --git a/src/mpid/ch3/channels/nemesis/netmod/scif/scifrw.c b/src/mpid/ch3/channels/nemesis/netmod/scif/scifrw.c
index 7ab4615..d66bfa8 100644
--- a/src/mpid/ch3/channels/nemesis/netmod/scif/scifrw.c
+++ b/src/mpid/ch3/channels/nemesis/netmod/scif/scifrw.c
@@ -407,7 +407,7 @@ int MPID_nem_scif_poll_send(int ep, shmchan_t * csend)
avail = csend->buflen - (csend->curp - csend->bufp) - sizeof(uint64_t);
if (avail >= SMALLMSG)
- goto fn_exit; /* room for a messsage */
+ goto fn_exit; /* room for a message */
lseqno = *csend->lseqno;
if (lseqno == csend->seqno)
goto fn_exit; /* remote side has consumed everything */
diff --git a/src/mpid/ch3/src/ch3u_recvq.c b/src/mpid/ch3/src/ch3u_recvq.c
index 01e3dcb..501edd4 100644
--- a/src/mpid/ch3/src/ch3u_recvq.c
+++ b/src/mpid/ch3/src/ch3u_recvq.c
@@ -139,7 +139,7 @@ int MPIDI_CH3U_Recvq_init(void)
MPI_T_PVAR_CLASS_LEVEL,
MPI_UNSIGNED,
MPI_T_ENUM_NULL,
- "length of the unexpected messsage receive queue",
+ "length of the unexpected message receive queue",
MPI_T_BIND_NO_OBJECT,
/*readonly=*/TRUE,
/*continuous=*/TRUE,
@@ -156,7 +156,7 @@ int MPIDI_CH3U_Recvq_init(void)
MPI_T_PVAR_CLASS_COUNTER,
MPI_AINT,
MPI_T_ENUM_NULL,
- "number of search passes on the messsage receive queue",
+ "number of search passes on the message receive queue",
MPI_T_BIND_NO_OBJECT,
/*readonly=*/FALSE,
/*continuous=*/TRUE,
@@ -173,7 +173,7 @@ int MPIDI_CH3U_Recvq_init(void)
MPI_T_PVAR_CLASS_COUNTER,
MPI_AINT,
MPI_T_ENUM_NULL,
- "number of search passes on the messsage receive queue",
+ "number of search passes on the message receive queue",
MPI_T_BIND_NO_OBJECT,
/*readonly=*/FALSE,
/*continuous=*/TRUE,
@@ -246,7 +246,7 @@ fn_fail:
* MPIDI_CH3U_Recvq_FU()
*
* Search for a matching request in the unexpected receive queue. Return
- * true if one is found, false otherwise. If the status arguement is
+ * true if one is found, false otherwise. If the status argument is
* not MPI_STATUS_IGNORE, return information about the request in that
* parameter. This routine is used by mpid_probe and mpid_iprobe.
*
diff --git a/src/mpid/ch3/src/mpid_isend.c b/src/mpid/ch3/src/mpid_isend.c
index ae932a6..2aaadeb 100644
--- a/src/mpid/ch3/src/mpid_isend.c
+++ b/src/mpid/ch3/src/mpid_isend.c
@@ -122,7 +122,7 @@ int MPID_Isend(const void * buf, int count, MPI_Datatype datatype, int rank,
MPIDI_CH3_GET_EAGER_THRESHOLD(&eager_threshold, comm, vc);
- /* FIXME: flow control: limit number of outstanding eager messsages
+ /* FIXME: flow control: limit number of outstanding eager messages
containing data and need to be buffered by the receiver */
if (data_sz + sizeof(MPIDI_CH3_Pkt_eager_send_t) <= eager_threshold)
{
diff --git a/src/mpid/ch3/src/mpid_send.c b/src/mpid/ch3/src/mpid_send.c
index 90dd507..0328b0c 100644
--- a/src/mpid/ch3/src/mpid_send.c
+++ b/src/mpid/ch3/src/mpid_send.c
@@ -116,7 +116,7 @@ int MPID_Send(const void * buf, int count, MPI_Datatype datatype, int rank,
MPIDI_CH3_GET_EAGER_THRESHOLD(&eager_threshold, comm, vc);
- /* FIXME: flow control: limit number of outstanding eager messsages
+ /* FIXME: flow control: limit number of outstanding eager messages
containing data and need to be buffered by the receiver */
#ifdef USE_EAGER_SHORT
if (dt_contig && data_sz <= MPIDI_EAGER_SHORT_SIZE) {
http://git.mpich.org/mpich.git/commitdiff/dd76a0f2f90bf4d79ac75a5d4419e498f…
commit dd76a0f2f90bf4d79ac75a5d4419e498f9770c30
Author: Pavan Balaji <balaji(a)mcs.anl.gov>
Date: Sun Apr 7 09:37:21 2013 -0500
Fix typo -- the performance tests were not correctly disabled in
released versions.
Reviewed by dinan.
diff --git a/maint/release.pl b/maint/release.pl
index 353a5bf..2cf3ab4 100755
--- a/maint/release.pl
+++ b/maint/release.pl
@@ -254,7 +254,7 @@ print("done\n");
# Disable unnecessary tests in the release tarball
print("===> Disabling unnecessary tests in the main package... ");
chdir($expdir);
-run_cmd("perl -p -i -e 's/^perf\$/#perf/' test/mpi/testlist.in");
+run_cmd("perl -p -i -e 's/^@perfdir@\$/#@perfdir@/' test/mpi/testlist.in");
run_cmd("perl -p -i -e 's/^large_message /#large_message /' test/mpi/pt2pt/testlist");
run_cmd("perl -p -i -e 's/^large-count /#large-count /' test/mpi/datatype/testlist");
print("done\n");
http://git.mpich.org/mpich.git/commitdiff/8fb17a1dc7a48d9695cf21aedf4f54b00…
commit 8fb17a1dc7a48d9695cf21aedf4f54b00da465e2
Author: Pavan Balaji <balaji(a)mcs.anl.gov>
Date: Sun Mar 24 12:34:55 2013 -0500
Bug-fix: We should use HYDU_FUNC instead of __func__ directly. We
already checked for this, but accidentally used __func__ directly
after the check.
Reviewed by dinan.
diff --git a/src/pm/hydra/include/hydra.h b/src/pm/hydra/include/hydra.h
index de7fcbb..3689417 100644
--- a/src/pm/hydra/include/hydra.h
+++ b/src/pm/hydra/include/hydra.h
@@ -374,7 +374,7 @@ struct HYD_user_global {
#define HYDU_error_printf(...) \
{ \
HYDU_dump_prefix(stderr); \
- HYDU_dump_noprefix(stderr, "%s (%s:%d): ", __func__, __FILE__, __LINE__); \
+ HYDU_dump_noprefix(stderr, "%s (%s:%d): ", HYDU_FUNC, __FILE__, __LINE__); \
HYDU_dump_noprefix(stderr, __VA_ARGS__); \
}
#elif defined __FILE__
-----------------------------------------------------------------------
Summary of changes:
maint/release.pl | 2 +-
src/env/mpicc.txt | 2 +-
src/env/mpicxx.txt | 2 +-
src/env/mpif77.txt | 2 +-
src/env/mpif90.txt | 2 +-
src/mpi/attr/attr_get.c | 2 +-
src/mpi/attr/comm_create_keyval.c | 2 +-
src/mpi/attr/comm_get_attr.c | 2 +-
src/mpi/attr/keyval_create.c | 2 +-
src/mpi/attr/type_get_attr.c | 2 +-
src/mpi/comm/comm_split.c | 2 +-
src/mpi/comm/comm_split_type.c | 2 +-
src/mpi/errhan/errnames.txt | 2 +-
src/mpi/pt2pt/startall.c | 2 +-
src/mpi/romio/mpi-io/iread_at.c | 2 +-
src/mpi/romio/mpi-io/iwrite_at.c | 2 +-
src/mpi/romio/mpi-io/rd_atallb.c | 2 +-
src/mpi/romio/mpi-io/rd_atalle.c | 2 +-
src/mpi/romio/mpi-io/read_at.c | 2 +-
src/mpi/romio/mpi-io/read_atall.c | 2 +-
src/mpi/romio/mpi-io/wr_atallb.c | 2 +-
src/mpi/romio/mpi-io/wr_atalle.c | 2 +-
src/mpi/romio/mpi-io/write_at.c | 2 +-
src/mpi/romio/mpi-io/write_atall.c | 2 +-
src/mpid/ch3/channels/nemesis/netmod/scif/scifrw.c | 2 +-
src/mpid/ch3/src/ch3u_recvq.c | 8 ++++----
src/mpid/ch3/src/mpid_isend.c | 2 +-
src/mpid/ch3/src/mpid_send.c | 2 +-
src/pm/hydra/include/hydra.h | 2 +-
29 files changed, 32 insertions(+), 32 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-11-g3f38e1b
by noreply@mpich.org 07 Apr '13
by noreply@mpich.org 07 Apr '13
07 Apr '13
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 3f38e1b9ff5ecc9a916aec41fb964c1cec2e3622 (commit)
via 24c1c9351a1811baa84b029dd3163d2ece0995b4 (commit)
via ca42e9d4fccddab38643445e891927e06a90c01e (commit)
from 83115a2f6317a91a4858ba1202bd902e18e41845 (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/3f38e1b9ff5ecc9a916aec41fb964c1ce…
commit 3f38e1b9ff5ecc9a916aec41fb964c1cec2e3622
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Thu Apr 4 21:38:08 2013 -0500
report context ID counts on allocation failure
When we run out of context IDs, we now report how many context IDs are
free on each process in the input communicator. This should make it
easier to identify the causes of bad allocation patterns in the wild.
Reviewed-by: dinan
diff --git a/src/mpi/comm/commutil.c b/src/mpi/comm/commutil.c
index f07bd9d..95fcb6f 100644
--- a/src/mpi/comm/commutil.c
+++ b/src/mpi/comm/commutil.c
@@ -859,11 +859,25 @@ int MPIR_Get_contextid_sparse_group(MPID_Comm *comm_ptr, MPID_Group *group_ptr,
if (ignore_id) {
*context_id = MPIR_Locate_context_bit(local_mask);
- MPIU_ERR_CHKANDJUMP(!(*context_id), mpi_errno, MPIR_ERR_RECOVERABLE, "**toomanycomm");
+ if (*context_id == 0) {
+ int nfree = -1;
+ int ntotal = -1;
+ MPIR_ContextMaskStats(&nfree, &ntotal);
+ MPIU_ERR_SETANDJUMP3(mpi_errno, MPIR_ERR_RECOVERABLE,
+ "**toomanycomm", "**toomanycomm %d %d %d",
+ nfree, ntotal, ignore_id);
+ }
}
else {
*context_id = MPIR_Find_and_allocate_context_id(local_mask);
- MPIU_ERR_CHKANDJUMP(!(*context_id), mpi_errno, MPIR_ERR_RECOVERABLE, "**toomanycomm");
+ if (*context_id == 0) {
+ int nfree = -1;
+ int ntotal = -1;
+ MPIR_ContextMaskStats(&nfree, &ntotal);
+ MPIU_ERR_SETANDJUMP3(mpi_errno, MPIR_ERR_RECOVERABLE,
+ "**toomanycomm", "**toomanycomm %d %d %d",
+ nfree, ntotal, ignore_id);
+ }
}
fn_exit:
@@ -1114,6 +1128,8 @@ int MPIR_Get_contextid_sparse_group(MPID_Comm *comm_ptr, MPID_Group *group_ptr,
* succeed because there is no common context ID. */
if (*context_id == 0 && local_mask[ALL_OWN_MASK_FLAG] == 1) {
/* --BEGIN ERROR HANDLING-- */
+ int nfree = 0;
+ int ntotal = 0;
if (own_mask) {
MPIU_THREAD_CS_ENTER(CONTEXTID,);
mask_in_use = 0;
@@ -1124,7 +1140,10 @@ int MPIR_Get_contextid_sparse_group(MPID_Comm *comm_ptr, MPID_Group *group_ptr,
MPIU_THREAD_CS_EXIT(CONTEXTID,);
}
- MPIU_ERR_SETANDJUMP(mpi_errno, MPI_ERR_OTHER, "**toomanycomm");
+ MPIR_ContextMaskStats(&nfree, &ntotal);
+ MPIU_ERR_SETANDJUMP3(mpi_errno, MPIR_ERR_RECOVERABLE,
+ "**toomanycommfrag", "**toomanycommfrag %d %d %d",
+ nfree, ntotal, ignore_id);
/* --END ERROR HANDLING-- */
}
@@ -1169,7 +1188,14 @@ static int gcn_helper(MPID_Comm *comm, int tag, void *state)
MPIR_Context_id_t newctxid;
newctxid = MPIR_Find_and_allocate_context_id(st->local_mask);
- MPIU_ERR_CHKANDJUMP(!newctxid, mpi_errno, MPIR_ERR_RECOVERABLE, "**toomanycomm");
+ if (!newctxid) {
+ int nfree = -1;
+ int ntotal = -1;
+ MPIR_ContextMaskStats(&nfree, &ntotal);
+ MPIU_ERR_SETANDJUMP3(mpi_errno, MPIR_ERR_RECOVERABLE,
+ "**toomanycomm", "**toomanycomm %d %d %d",
+ nfree, ntotal, /*ignore_id=*/0);
+ }
if (st->ctx0)
*st->ctx0 = newctxid;
@@ -1528,7 +1554,12 @@ int MPIR_Comm_copy( MPID_Comm *comm_ptr, int size, MPID_Comm **outcomm_ptr )
}
/* --BEGIN ERROR HANDLING-- */
if (new_context_id == 0) {
- MPIU_ERR_SETANDJUMP(mpi_errno, MPI_ERR_OTHER, "**toomanycomm" );
+ int nfree = -1;
+ int ntotal = -1;
+ MPIR_ContextMaskStats(&nfree, &ntotal);
+ MPIU_ERR_SETANDJUMP3(mpi_errno, MPIR_ERR_RECOVERABLE,
+ "**toomanycomm", "**toomanycomm %d %d %d",
+ nfree, ntotal, /*ignore_id=*/0);
}
/* --END ERROR HANDLING-- */
diff --git a/src/mpi/errhan/errnames.txt b/src/mpi/errhan/errnames.txt
index 32bf69d..8e78c48 100644
--- a/src/mpi/errhan/errnames.txt
+++ b/src/mpi/errhan/errnames.txt
@@ -91,6 +91,9 @@ was not started with MPI_GREQUEST_START
**attrsentinal:Internal fields in an attribute have been overwritten; \
possible errors in using the attribute value in user code.
**toomanycomm:Too many communicators
+**toomanycomm %d %d %d:Too many communicators (%d/%d free on this process; ignore_id=%d)
+**toomanycommfrag: Cannot allocate context ID because of fragmentation
+**toomanycommfrag %d %d %d: Cannot allocate context ID because of fragmentation (%d/%d free on this process; ignore_id=%d)
**commperm:Cannot free permanent communicator
**commperm %s:Cannot free permanent communicator %s
**group:Invalid group
http://git.mpich.org/mpich.git/commitdiff/24c1c9351a1811baa84b029dd3163d2ec…
commit 24c1c9351a1811baa84b029dd3163d2ece0995b4
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Thu Apr 4 21:36:46 2013 -0500
add `MPIR_ContextMaskStats` debug routine
This should be useful for debugging context ID allocation issues in the
wild.
Reviewed-by: dinan
diff --git a/src/mpi/comm/commutil.c b/src/mpi/comm/commutil.c
index a65a4af..f07bd9d 100644
--- a/src/mpi/comm/commutil.c
+++ b/src/mpi/comm/commutil.c
@@ -630,6 +630,41 @@ char *MPIR_ContextMaskToStr( void )
return bufstr;
}
+/* Returns useful debugging information about the context ID mask bit-vector.
+ * This includes the total number of possibly valid IDs (the size of the ID
+ * space) and the number of free IDs remaining in the mask. NULL arguments are
+ * fine, they will be ignored.
+ *
+ * This routine is for debugging in very particular situations and does not
+ * attempt to control concurrent access to the mask vector.
+ *
+ * Callers should own the context ID critical section, or should be prepared to
+ * suffer data races in any fine-grained locking configuration.
+ *
+ * The routine is non-static in order to permit "in the field debugging". We
+ * provide a prototype here to keep the compiler happy. */
+void MPIR_ContextMaskStats(int *free_ids, int *total_ids);
+void MPIR_ContextMaskStats(int *free_ids, int *total_ids)
+{
+ if (free_ids) {
+ int i, j;
+ *free_ids = 0;
+
+ /* if this ever needs to be fast, use a lookup table to do a per-nibble
+ * or per-byte lookup of the popcount instead of checking each bit at a
+ * time (or just track the count when manipulating the mask and keep
+ * that count stored in a variable) */
+ for (i = 0; i < MPIR_MAX_CONTEXT_MASK; ++i) {
+ for (j = 0; j < sizeof(context_mask[0])*8; ++j) {
+ *free_ids += (context_mask[i] & (0x1 << j)) >> j;
+ }
+ }
+ }
+ if (total_ids) {
+ *total_ids = MPIR_MAX_CONTEXT_MASK*sizeof(context_mask[0])*8;
+ }
+}
+
#ifdef MPICH_DEBUG_HANDLEALLOC
static int MPIU_CheckContextIDsOnFinalize(void *context_mask_ptr)
{
http://git.mpich.org/mpich.git/commitdiff/ca42e9d4fccddab38643445e891927e06…
commit ca42e9d4fccddab38643445e891927e06a90c01e
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Thu Apr 4 13:10:42 2013 -0500
make `MPIR_ContextMaskToStr` non-static
This permits external users/developers to use this routine for debugging
context ID allocation problems in the field. At some point we may want
to expose this info through the `MPI_T_` interface.
Note that this isn't the way I would do it if I were building this stuff
from scratch, I'm just taking a direct path from what we've got to
something more useful.
Reviewed-by: dinan
diff --git a/src/mpi/comm/commutil.c b/src/mpi/comm/commutil.c
index 8dc7b55..a65a4af 100644
--- a/src/mpi/comm/commutil.c
+++ b/src/mpi/comm/commutil.c
@@ -599,12 +599,22 @@ int MPIR_Comm_is_node_consecutive(MPID_Comm * comm)
static uint32_t context_mask[MPIR_MAX_CONTEXT_MASK];
static int initialize_context_mask = 1;
-#ifdef USE_DBG_LOGGING
/* Create a string that contains the context mask. This is
used only with the logging interface, and must be used by one thread at
a time (should this be enforced by the logging interface?).
- Converts the mask to hex and returns a pointer to that string */
-static char *MPIR_ContextMaskToStr( void )
+ Converts the mask to hex and returns a pointer to that string.
+
+ Callers should own the context ID critical section, or should be prepared to
+ suffer data races in any fine-grained locking configuration.
+
+ This routine is no longer static in order to allow advanced users and
+ developers to debug context ID problems "in the field". We provide a
+ prototype here to keep the compiler happy, but users will need to put a
+ (possibly "extern") copy of the prototype in their own code in order to call
+ this routine.
+ */
+char *MPIR_ContextMaskToStr( void );
+char *MPIR_ContextMaskToStr( void )
{
static char bufstr[MPIR_MAX_CONTEXT_MASK*8+1];
int i;
@@ -619,7 +629,6 @@ static char *MPIR_ContextMaskToStr( void )
}
return bufstr;
}
-#endif
#ifdef MPICH_DEBUG_HANDLEALLOC
static int MPIU_CheckContextIDsOnFinalize(void *context_mask_ptr)
-----------------------------------------------------------------------
Summary of changes:
src/mpi/comm/commutil.c | 93 ++++++++++++++++++++++++++++++++++++++----
src/mpi/errhan/errnames.txt | 3 +
2 files changed, 87 insertions(+), 9 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-8-g83115a2
by noreply@mpich.org 05 Apr '13
by noreply@mpich.org 05 Apr '13
05 Apr '13
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 83115a2f6317a91a4858ba1202bd902e18e41845 (commit)
from 4753a4e48d8883c6a7af0afe4399375063cf6529 (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/83115a2f6317a91a4858ba1202bd902e1…
commit 83115a2f6317a91a4858ba1202bd902e18e41845
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Fri Apr 5 15:07:32 2013 -0500
.gitignore updates for the test suite
This should cause fewer failures in the Jenkins check that checks our
`git status` output.
No reviewer.
diff --git a/.gitignore b/.gitignore
index a808870..1634a5a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -116,7 +116,6 @@ tags
/src/pm/hydra/confdb
/src/pm/hydra/mpl
/src/pm/hydra/mpl/confdb
-/test/mpi/confdb
/src/mpi/romio/version.m4
/src/pm/hydra/version.m4
@@ -144,34 +143,13 @@ Makefile.am-stamp
# random stuff
/maint/gcovmerge
-/test/mpi/f90/ext/ctypesfromc.c
/src/binding/f77/buildiface-stamp
/src/binding/f90/buildiface-stamp
/src/binding/cxx/buildiface-stamp
# script-generated f90 test files
-/test/mpi/f90/attr/Makefile.am
-/test/mpi/f90/datatype/Makefile.am
-/test/mpi/f90/datatype/hindex1f90.f90
-/test/mpi/f90/datatype/hindexed_blockf90.f90
-/test/mpi/f90/ext/Makefile.am
-/test/mpi/f90/ext/stamp-Makefile.am
-/test/mpi/f90/io/Makefile.am
-/test/mpi/f90/rma/Makefile.am
-/test/mpi/errors/f90/errhan/Makefile.am
-/test/mpi/errors/f90/errhan/testlist
-/test/mpi/errors/f90/errhan/uerrhandf90.f90
-/test/mpi/errors/f77/errhan/addsize.h
-/test/mpi/errors/f77/errhan/iooffset.h
# created solely from the f77 counterpart dirs
-/test/mpi/f90/coll/
-/test/mpi/f90/comm/
-/test/mpi/f90/info/
-/test/mpi/f90/init/
-/test/mpi/f90/pt2pt/
-/test/mpi/f90/spawn/
-/test/mpi/f90/topo/
# dirs created by the local install of OPA & MPL
/share
@@ -192,13 +170,6 @@ Makefile.am-stamp
/src/packaging/pkgconfig/mpich2-f77.pc
/src/packaging/pkgconfig/mpich2-f90.pc
/src/packaging/spec/fedora.spec
-/test/mpi/coll/gdb.script
-/test/mpi/coll/redscat2
-/test/mpi/coll/reduce_local
-/test/mpi/coll/summary.xml
-/test/mpi/f90/attr/attrmpi1f90.f90
-/test/mpi/f90/ext/allocmemf290.f90
-/test/mpi/threads/testlist
# random additions 2
/mpich-doxygen
@@ -211,9 +182,6 @@ Makefile.am-stamp
/src/include/mpichinfo.h
/src/packaging/envmods/mpich.module
/src/packaging/pkgconfig/mpich.pc
-/test/mpi/checktests
-/test/mpi/f77/spawn/testlist
-/test/mpi/f90/datatype/typename3f90.f90
# stamp "witness" files from the new build system
/src/binding/f90/buildiface.stamp
@@ -245,7 +213,6 @@ Makefile.am-stamp
/src/mpi/romio/aclocal.m4
/src/mpi/romio/libtool
/src/pm/mpd/aclocal.m4
-/test/mpi/aclocal.m4
/src/pm/gforker/mpiexec.gforker
/src/env/cc_shlib.conf
/src/env/cxx_shlib.conf
@@ -259,15 +226,6 @@ Makefile.am-stamp
/src/include/mpich_param_vals.h
/src/util/param/param_vals.c
-/test/mpi/f77/init/checksizes.c
-/test/mpi/f90/datatype/allctypesf90.f90
-/test/mpi/io/test.ord
-/test/mpi/threads/pt2pt/greq_test
-/test/mpi/threads/pt2pt/greq_wait
-/test/mpi/threads/pt2pt/multisend
-/test/mpi/threads/pt2pt/multisend2
-/test/mpi/threads/pt2pt/multisend3
-/test/mpi/threads/pt2pt/multisend4
################################################################################
# stuff added a long time ago by `git svn show-ignore` from one of Dave's
@@ -608,564 +566,6 @@ Makefile.am-stamp
/test/commands/stdiotest
/test/commands/checkenv1
-# /test/mpi/
-/test/mpi/testlist
-/test/mpi/runtests
-/test/mpi/results.txt
-/test/mpi/test.sln
-/test/mpi/test.ncb
-/test/mpi/test.suo
-
-# /test/mpi/attr/
-/test/mpi/attr/attrt
-/test/mpi/attr/attrerr
-/test/mpi/attr/attrerrcomm
-/test/mpi/attr/attrerrtype
-/test/mpi/attr/attric
-/test/mpi/attr/attrorder
-/test/mpi/attr/attrordercomm
-/test/mpi/attr/attrordertype
-/test/mpi/attr/attrorderwin
-/test/mpi/attr/baseattr2
-/test/mpi/attr/baseattrcomm
-/test/mpi/attr/baseattrwin
-/test/mpi/attr/fkeyval
-/test/mpi/attr/fkeyvalcomm
-/test/mpi/attr/fkeyvaltype
-/test/mpi/attr/fkeyvalwin
-
-# /test/mpi/basic/
-/test/mpi/basic/simple
-/test/mpi/basic/sendrecv
-/test/mpi/basic/wtime
-/test/mpi/basic/netpipe
-/test/mpi/basic/patterns
-/test/mpi/basic/srtest
-/test/mpi/basic/self
-/test/mpi/basic/adapt
-/test/mpi/basic/allmpi
-/test/mpi/basic/Netpipe.out
-
-# /test/mpi/coll/
-/test/mpi/coll/bcasttest
-/test/mpi/coll/allred
-/test/mpi/coll/alltoallv
-/test/mpi/coll/coll8
-/test/mpi/coll/coll13
-/test/mpi/coll/alltoallv
-/test/mpi/coll/redscat
-/test/mpi/coll/coll9
-/test/mpi/coll/coll7
-/test/mpi/coll/coll6
-/test/mpi/coll/coll5
-/test/mpi/coll/coll4
-/test/mpi/coll/coll3
-/test/mpi/coll/coll2
-/test/mpi/coll/allredmany
-/test/mpi/coll/scantst
-/test/mpi/coll/longuser
-/test/mpi/coll/coll10
-/test/mpi/coll/coll11
-/test/mpi/coll/coll12
-/test/mpi/coll/scatterv
-/test/mpi/coll/scattern
-/test/mpi/coll/rerr
-/test/mpi/coll/bcast2
-/test/mpi/coll/bcast3
-/test/mpi/coll/exscan2
-/test/mpi/coll/exscan
-/test/mpi/coll/icallgather
-/test/mpi/coll/icallgatherv
-/test/mpi/coll/icallreduce
-/test/mpi/coll/icalltoall
-/test/mpi/coll/icbarrier
-/test/mpi/coll/icbcast
-/test/mpi/coll/icgather
-/test/mpi/coll/icgatherv
-/test/mpi/coll/icreduce
-/test/mpi/coll/icscatter
-/test/mpi/coll/icscatterv
-/test/mpi/coll/allgatherv2
-/test/mpi/coll/alltoallv0
-
-# /test/mpi/comm/
-/test/mpi/comm/dup
-/test/mpi/comm/ic1
-/test/mpi/comm/cfree
-/test/mpi/comm/commname
-/test/mpi/comm/dupic
-/test/mpi/comm/ctxalloc
-
-# /test/mpi/cxx/
-/test/mpi/cxx/testlist
-
-# /test/mpi/cxx/coll/
-/test/mpi/cxx/coll/uallreduce
-/test/mpi/cxx/coll/ureduce
-/test/mpi/cxx/coll/uscan
-/test/mpi/cxx/coll/uexscan
-/test/mpi/cxx/coll/icbcastx
-/test/mpi/cxx/coll/icbarrierx
-/test/mpi/cxx/coll/icgatherx
-/test/mpi/cxx/coll/icgathervx
-/test/mpi/cxx/coll/icscatterx
-/test/mpi/cxx/coll/icscattervx
-/test/mpi/cxx/coll/icallgatherx
-/test/mpi/cxx/coll/icallgathervx
-/test/mpi/cxx/coll/icallreducex
-
-# /test/mpi/cxx/io/
-/test/mpi/cxx/io/iwritex.cxx
-/test/mpi/cxx/io/iwriteatx.cxx
-/test/mpi/cxx/io/iwriteshx.cxx
-/test/mpi/cxx/io/writex.cxx
-/test/mpi/cxx/io/writeatx.cxx
-/test/mpi/cxx/io/writeallx.cxx
-/test/mpi/cxx/io/writeordx.cxx
-/test/mpi/cxx/io/writeordbex.cxx
-/test/mpi/cxx/io/writeshx.cxx
-/test/mpi/cxx/io/writeatallx.cxx
-/test/mpi/cxx/io/writeatallbex.cxx
-/test/mpi/cxx/io/writeallbex.cxx
-/test/mpi/cxx/io/iwritenosx.cxx
-/test/mpi/cxx/io/iwriteatnosx.cxx
-/test/mpi/cxx/io/iwriteshnosx.cxx
-/test/mpi/cxx/io/writenosx.cxx
-/test/mpi/cxx/io/writeatnosx.cxx
-/test/mpi/cxx/io/writeallnosx.cxx
-/test/mpi/cxx/io/writeordnosx.cxx
-/test/mpi/cxx/io/writeordbenosx.cxx
-/test/mpi/cxx/io/writeshnosx.cxx
-/test/mpi/cxx/io/writeatallnosx.cxx
-/test/mpi/cxx/io/writeatallbenosx.cxx
-/test/mpi/cxx/io/writeallbenosx.cxx
-/test/mpi/cxx/io/iwritex
-/test/mpi/cxx/io/iwriteatx
-/test/mpi/cxx/io/writex
-/test/mpi/cxx/io/writeatx
-/test/mpi/cxx/io/writeallx
-/test/mpi/cxx/io/writeordx
-/test/mpi/cxx/io/writeordbex
-/test/mpi/cxx/io/writeshx
-/test/mpi/cxx/io/writeatallx
-/test/mpi/cxx/io/writeatallbex
-/test/mpi/cxx/io/writeallbex
-/test/mpi/cxx/io/iwritenosx
-/test/mpi/cxx/io/iwriteatnosx
-/test/mpi/cxx/io/writenosx
-/test/mpi/cxx/io/writeatnosx
-/test/mpi/cxx/io/writeallnosx
-/test/mpi/cxx/io/writeordnosx
-/test/mpi/cxx/io/writeordbenosx
-/test/mpi/cxx/io/writeshnosx
-/test/mpi/cxx/io/writeatallnosx
-/test/mpi/cxx/io/writeatallbenosx
-/test/mpi/cxx/io/writeallbenosx
-
-# /test/mpi/cxx/pt2pt/
-/test/mpi/cxx/pt2pt/bsend1cxx
-
-# /test/mpi/cxx/spawn/
-/test/mpi/cxx/spawn/namepubx
-/test/mpi/cxx/spawn/spawnintrax
-/test/mpi/cxx/spawn/spawnintrax
-/test/mpi/cxx/spawn/spawnargvx
-/test/mpi/cxx/spawn/selfconaccx
-
-# /test/mpi/datatype/
-/test/mpi/datatype/segtest
-/test/mpi/datatype/typename
-/test/mpi/datatype/contents
-/test/mpi/datatype/struct-pack
-/test/mpi/datatype/triangular-pack
-/test/mpi/datatype/slice-pack
-/test/mpi/datatype/simple-pack
-/test/mpi/datatype/transpose-pack
-/test/mpi/datatype/lbub
-/test/mpi/datatype/bsend1
-/test/mpi/datatype/getpartelm
-/test/mpi/datatype/localpack
-/test/mpi/datatype/zeroparms
-
-# /test/mpi/errhan/
-/test/mpi/errhan/errstring
-/test/mpi/errhan/errcode.c
-/test/mpi/errhan/errcode
-/test/mpi/errhan/adderr
-/test/mpi/errhan/errring
-
-# /test/mpi/errors/
-/test/mpi/errors/testlist
-
-# /test/mpi/errors/coll/
-/test/mpi/errors/coll/noalias
-/test/mpi/errors/coll/rerr
-/test/mpi/errors/coll/bcastlength
-
-# /test/mpi/errors/cxx/
-/test/mpi/errors/cxx/testlist
-
-# /test/mpi/errors/errhan/
-/test/mpi/errors/errhan/errstring
-/test/mpi/errors/errhan/errcode.c
-/test/mpi/errors/errhan/errcode
-/test/mpi/errors/errhan/adderr
-/test/mpi/errors/errhan/errring
-
-# /test/mpi/errors/group/
-/test/mpi/errors/group/rerr
-
-# /test/mpi/errors/io/
-/test/mpi/errors/io/fileerrret
-
-# /test/mpi/errors/pt2pt/
-/test/mpi/errors/pt2pt/proberank
-/test/mpi/errors/pt2pt/truncmsg2
-
-# /test/mpi/errors/spawn/
-/test/mpi/errors/spawn/badport
-
-# /test/mpi/errors/topo/
-/test/mpi/errors/topo/cartsmall
-
-# /test/mpi/f77/
-/test/mpi/f77/testlist
-
-# /test/mpi/f77/attr/
-/test/mpi/f77/attr/baseattr
-/test/mpi/f77/attr/attraints.h
-
-# /test/mpi/f77/datatype/
-/test/mpi/f77/datatype/typeaints.h
-
-# /test/mpi/f77/ext/
-/test/mpi/f77/ext/add1size.h
-/test/mpi/f77/ext/c2f2cf
-/test/mpi/f77/ext/testlist
-
-# /test/mpi/f77/info/
-/test/mpi/f77/info/infotest
-
-# /test/mpi/f77/io/
-/test/mpi/f77/io/iwritef.f
-/test/mpi/f77/io/iwriteatf.f
-/test/mpi/f77/io/iwriteshf.f
-/test/mpi/f77/io/writef.f
-/test/mpi/f77/io/writeatf.f
-/test/mpi/f77/io/writeallf.f
-/test/mpi/f77/io/writeordf.f
-/test/mpi/f77/io/writeordbef.f
-/test/mpi/f77/io/writeshf.f
-/test/mpi/f77/io/writeatallf.f
-/test/mpi/f77/io/writeatallbef.f
-/test/mpi/f77/io/writeallbef.f
-/test/mpi/f77/io/iwritef
-/test/mpi/f77/io/iwriteatf
-/test/mpi/f77/io/writef
-/test/mpi/f77/io/writeatf
-/test/mpi/f77/io/writeallf
-/test/mpi/f77/io/writeordf
-/test/mpi/f77/io/writeordbef
-/test/mpi/f77/io/writeshf
-/test/mpi/f77/io/writeatall
-/test/mpi/f77/io/writeatallbef
-/test/mpi/f77/io/writeallbef
-/test/mpi/f77/io/iooffset.h
-/test/mpi/f77/io/iodisp.h
-/test/mpi/f77/io/ioaint.h
-
-# /test/mpi/f77/pt2pt/
-/test/mpi/f77/pt2pt/attr1aints.h
-
-# /test/mpi/f77/rma/
-/test/mpi/f77/rma/addsize.h
-
-# /test/mpi/f77/spawn/
-/test/mpi/f77/spawn/type1aint.h
-/test/mpi/f77/spawn/connaccf
-/test/mpi/f77/spawn/namepubf
-/test/mpi/f77/spawn/spawnargvf
-/test/mpi/f77/spawn/spawnmultf
-/test/mpi/f77/spawn/spawnf
-/test/mpi/f77/spawn/spawnmult2f
-
-# /test/mpi/f90/
-/test/mpi/f90/testlist
-/test/mpi/f90/util
-
-# /test/mpi/f90/attr/
-/test/mpi/f90/attr/baseattrf90.f90
-/test/mpi/f90/attr/baseattr2f90.f90
-/test/mpi/f90/attr/baseattrwinf90.f90
-/test/mpi/f90/attr/commattrf90.f90
-/test/mpi/f90/attr/commattr2f90.f90
-/test/mpi/f90/attr/commattr3f90.f90
-/test/mpi/f90/attr/typeattrf90.f90
-/test/mpi/f90/attr/typeattr2f90.f90
-/test/mpi/f90/attr/typeattr3f90.f90
-/test/mpi/f90/attr/winattrf90.f90
-/test/mpi/f90/attr/winattr2f90.f90
-/test/mpi/f90/attr/Makefile.sm
-/test/mpi/f90/attr/testlist
-
-# /test/mpi/f90/coll/
-/test/mpi/f90/coll/uallreducef90.f90
-/test/mpi/f90/coll/alltoallwf90.f90
-/test/mpi/f90/coll/exscanf90.f90
-/test/mpi/f90/coll/inplacef90.f90
-/test/mpi/f90/coll/allredint8f90.f90
-/test/mpi/f90/coll/allredopttf90.f90
-/test/mpi/f90/coll/Makefile.sm
-/test/mpi/f90/coll/testlist
-
-# /test/mpi/f90/comm/
-/test/mpi/f90/comm/Makefile.sm
-/test/mpi/f90/comm/testlist
-/test/mpi/f90/comm/commerrf90.f90
-/test/mpi/f90/comm/commnamef90.f90
-
-# /test/mpi/f90/datatype/
-/test/mpi/f90/datatype/Makefile.sm
-/test/mpi/f90/datatype/testlist
-/test/mpi/f90/datatype/typenamef90.f90
-/test/mpi/f90/datatype/packef90.f90
-/test/mpi/f90/datatype/typecntsf90.f90
-/test/mpi/f90/datatype/typem2f90.f90
-/test/mpi/f90/datatype/typesnamef90.f90
-/test/mpi/f90/datatype/typesubf90.f90
-/test/mpi/f90/datatype/gaddressf90.f90
-/test/mpi/f90/datatype/indtype
-
-# /test/mpi/f90/ext/
-/test/mpi/f90/ext/Makefile.sm
-/test/mpi/f90/ext/testlist
-/test/mpi/f90/ext/testlist.in
-/test/mpi/f90/ext/allocmemf90.f90
-/test/mpi/f90/ext/allocmem90.f90
-/test/mpi/f90/ext/c2f2cf90.f90
-/test/mpi/f90/ext/c2f902c.c
-/test/mpi/f90/ext/c2f90mult.c
-/test/mpi/f90/ext/ctypesf90romc.c
-/test/mpi/f90/ext/ctypesinf90.f90
-
-# /test/mpi/f90/f90types/
-
-# /test/mpi/f90/info/
-/test/mpi/f90/info/Makefile.sm
-/test/mpi/f90/info/infotestf90.f90
-/test/mpi/f90/info/infotest2f90.f90
-/test/mpi/f90/info/infotest
-/test/mpi/f90/info/testlist
-
-# /test/mpi/f90/init/
-/test/mpi/f90/init/Makefile.sm
-/test/mpi/f90/init/testlist
-/test/mpi/f90/init/baseenvf90.f90
-
-# /test/mpi/f90/io/
-/test/mpi/f90/io/shpositionf90.f90
-/test/mpi/f90/io/fileerrf90.f90
-/test/mpi/f90/io/fileinfof90.f90
-/test/mpi/f90/io/miscfilef90.f90
-/test/mpi/f90/io/atomicityf90.f90
-/test/mpi/f90/io/setviewcurf90.f90
-/test/mpi/f90/io/iwritef90.f90
-/test/mpi/f90/io/iwriteatf90.f90
-/test/mpi/f90/io/iwriteshf90.f90
-/test/mpi/f90/io/writef90.f90
-/test/mpi/f90/io/writeatf90.f90
-/test/mpi/f90/io/writeallf90.f90
-/test/mpi/f90/io/writeordf90.f90
-/test/mpi/f90/io/writeordbef90.f90
-/test/mpi/f90/io/writeshf90.f90
-/test/mpi/f90/io/writeatallf90.f90
-/test/mpi/f90/io/writeatallbef90.f90
-/test/mpi/f90/io/writeallbef90.f90
-/test/mpi/f90/io/c2f2ciof90.f90
-/test/mpi/f90/io/c2f902cio.c
-/test/mpi/f90/io/c2f90multio.c
-/test/mpi/f90/io/Makefile.sm
-/test/mpi/f90/io/testlist
-/test/mpi/f90/io/ioharness.defn
-/test/mpi/f90/io/ioharness.tlt
-
-# /test/mpi/f90/misc/
-/test/mpi/f90/misc/sizeof
-/test/mpi/f90/misc/f77tof90
-
-# /test/mpi/f90/pt2pt/
-/test/mpi/f90/pt2pt/Makefile.sm
-/test/mpi/f90/pt2pt/testlist
-/test/mpi/f90/pt2pt/statusesf90.f90
-/test/mpi/f90/pt2pt/greqf90.f90
-/test/mpi/f90/pt2pt/greqf90
-/test/mpi/f90/pt2pt/statusesf90
-
-# /test/mpi/f90/rma/
-/test/mpi/f90/rma/Makefile.sm
-/test/mpi/f90/rma/testlist
-/test/mpi/f90/rma/winaccf90.f90
-/test/mpi/f90/rma/winerrf90.f90
-/test/mpi/f90/rma/winfencef90.f90
-/test/mpi/f90/rma/wingetf90.f90
-/test/mpi/f90/rma/wingroupf90.f90
-/test/mpi/f90/rma/winnamef90.f90
-/test/mpi/f90/rma/winscale1f90.f90
-/test/mpi/f90/rma/winscale2f90.f90
-/test/mpi/f90/rma/winaccf90
-/test/mpi/f90/rma/winerrf90
-/test/mpi/f90/rma/winfencef90
-/test/mpi/f90/rma/wingetf90
-/test/mpi/f90/rma/wingroupf90
-/test/mpi/f90/rma/winnamef90
-/test/mpi/f90/rma/winscale1f90
-/test/mpi/f90/rma/winscale2f90
-/test/mpi/f90/rma/c2f2cwinf90.f90
-/test/mpi/f90/rma/c2f902cwin.c
-
-# /test/mpi/f90/spawn/
-/test/mpi/f90/spawn/Makefile.sm
-/test/mpi/f90/spawn/testlist
-/test/mpi/f90/spawn/namepubf90.f90
-/test/mpi/f90/spawn/spawnf90.f90
-/test/mpi/f90/spawn/spawnargvf90.f90
-/test/mpi/f90/spawn/spawnmultf90.f90
-/test/mpi/f90/spawn/spawnmult2f90.f90
-/test/mpi/f90/spawn/connaccf90.f90
-/test/mpi/f90/spawn/namepubf90
-/test/mpi/f90/spawn/connaccf90
-/test/mpi/f90/spawn/spawnargvf90
-/test/mpi/f90/spawn/spawnf90
-/test/mpi/f90/spawn/spawnmult2f90
-/test/mpi/f90/spawn/spawnmultf90
-
-# /test/mpi/f90/timer/
-/test/mpi/f90/timer/testlist
-/test/mpi/f90/timer/wtimef90
-
-# /test/mpi/f90/topo/
-/test/mpi/f90/topo/Makefile.sm
-/test/mpi/f90/topo/testlist
-/test/mpi/f90/topo/cartcrf90.f90
-
-# /test/mpi/group/
-/test/mpi/group/errstring
-/test/mpi/group/grouptest
-/test/mpi/group/groupcreate
-/test/mpi/group/grouptest2
-/test/mpi/group/glpid
-/test/mpi/group/groupnullincl
-/test/mpi/group/gtranks
-
-# /test/mpi/info/
-/test/mpi/info/infodel
-/test/mpi/info/infodup
-/test/mpi/info/infoorder
-/test/mpi/info/infovallen
-
-# /test/mpi/init/
-/test/mpi/init/exitst1
-/test/mpi/init/exitst2
-/test/mpi/init/initstat
-/test/mpi/init/timeout
-/test/mpi/init/version
-
-# /test/mpi/io/
-/test/mpi/io/rdwrord
-/test/mpi/io/testfile*
-/test/mpi/io/async
-/test/mpi/io/async_any
-/test/mpi/io/getextent
-/test/mpi/io/i_noncontig
-/test/mpi/io/rdwrzero
-/test/mpi/io/setinfo
-/test/mpi/io/setviewcur
-/test/mpi/io/userioerr
-
-# /test/mpi/maint/
-/test/mpi/maint/testmerge
-/test/mpi/maint/conftimestamp
-/test/mpi/maint/f77tof90
-
-# /test/mpi/manual/
-/test/mpi/manual/singjoin
-/test/mpi/manual/testconnect
-/test/mpi/manual/manyconnect
-/test/mpi/manual/dimsbalanced
-/test/mpi/manual/test-port
-
-# /test/mpi/perf/
-/test/mpi/perf/transp-datatype
-/test/mpi/perf/twovec
-/test/mpi/perf/sendrecvl
-
-# /test/mpi/pt2pt/
-/test/mpi/pt2pt/dup
-/test/mpi/pt2pt/bsend1
-/test/mpi/pt2pt/bsend2
-/test/mpi/pt2pt/bsend3
-/test/mpi/pt2pt/bsend4
-/test/mpi/pt2pt/isendself
-/test/mpi/pt2pt/bsendfrag
-/test/mpi/pt2pt/cancelrecv
-/test/mpi/pt2pt/errinstatta
-/test/mpi/pt2pt/errinstatts
-/test/mpi/pt2pt/errinstatwa
-/test/mpi/pt2pt/errinstatws
-/test/mpi/pt2pt/inactivereq
-
-# /test/mpi/rma/
-/test/mpi/rma/ircpi
-/test/mpi/rma/test1
-/test/mpi/rma/test2
-/test/mpi/rma/test3
-/test/mpi/rma/test4
-/test/mpi/rma/test5
-/test/mpi/rma/transpose1
-/test/mpi/rma/transpose2
-/test/mpi/rma/transpose3
-/test/mpi/rma/transpose4
-/test/mpi/rma/transpose5
-/test/mpi/rma/transpose6
-/test/mpi/rma/transpose7
-/test/mpi/rma/fetchandadd
-/test/mpi/rma/fetchandadd_tree
-/test/mpi/rma/winname
-/test/mpi/rma/accfence1
-/test/mpi/rma/accfence2
-/test/mpi/rma/allocmem
-/test/mpi/rma/getfence1
-/test/mpi/rma/getgroup
-/test/mpi/rma/putfence1
-/test/mpi/rma/putpscw1
-/test/mpi/rma/wintest
-
-# /test/mpi/spawn/
-/test/mpi/spawn/namepub
-/test/mpi/spawn/disconnect3
-/test/mpi/spawn/spaiccreate
-/test/mpi/spawn/spawn1
-/test/mpi/spawn/spawn2
-
-# /test/mpi/threads/pt2pt/
-/test/mpi/threads/pt2pt/threaded_sr
-/test/mpi/threads/pt2pt/alltoall
-/test/mpi/threads/pt2pt/sendselfth
-
-# /test/mpi/threads/spawn/
-/test/mpi/threads/spawn/threaded_sr
-/test/mpi/threads/spawn/alltoall
-/test/mpi/threads/spawn/sendselfth
-
-# /test/mpi/topo/
-/test/mpi/topo/cartmap1
-/test/mpi/topo/cartshift1
-/test/mpi/topo/cartsuball
-/test/mpi/topo/dims1
-/test/mpi/topo/graphmap1
-/test/mpi/topo/topodup
-/test/mpi/topo/topotest
-
# /test/mpid/
/test/mpid/atomic
/test/mpid/dluse
diff --git a/test/mpi/.gitignore b/test/mpi/.gitignore
new file mode 100644
index 0000000..3aadba2
--- /dev/null
+++ b/test/mpi/.gitignore
@@ -0,0 +1,993 @@
+# entries moved here from the top-level .gitignore
+/confdb
+/f90/ext/ctypesfromc.c
+/f90/attr/Makefile.am
+/f90/datatype/Makefile.am
+/f90/datatype/hindex1f90.f90
+/f90/datatype/hindexed_blockf90.f90
+/f90/ext/Makefile.am
+/f90/ext/stamp-Makefile.am
+/f90/io/Makefile.am
+/f90/rma/Makefile.am
+/errors/f90/errhan/Makefile.am
+/errors/f90/errhan/testlist
+/errors/f90/errhan/uerrhandf90.f90
+/errors/f77/errhan/addsize.h
+/errors/f77/errhan/iooffset.h
+/f90/coll/
+/f90/comm/
+/f90/info/
+/f90/init/
+/f90/pt2pt/
+/f90/spawn/
+/f90/topo/
+/coll/gdb.script
+/coll/redscat2
+/coll/reduce_local
+/coll/summary.xml
+/f90/attr/attrmpi1f90.f90
+/f90/ext/allocmemf290.f90
+/threads/testlist
+/checktests
+/f77/spawn/testlist
+/f90/datatype/typename3f90.f90
+/aclocal.m4
+/f77/init/checksizes.c
+/f90/datatype/allctypesf90.f90
+/io/test.ord
+/threads/pt2pt/greq_test
+/threads/pt2pt/greq_wait
+/threads/pt2pt/multisend
+/threads/pt2pt/multisend2
+/threads/pt2pt/multisend3
+/threads/pt2pt/multisend4
+/testlist
+/runtests
+/results.txt
+/test.sln
+/test.ncb
+/test.suo
+/attr/attrt
+/attr/attrerr
+/attr/attrerrcomm
+/attr/attrerrtype
+/attr/attric
+/attr/attrorder
+/attr/attrordercomm
+/attr/attrordertype
+/attr/attrorderwin
+/attr/baseattr2
+/attr/baseattrcomm
+/attr/baseattrwin
+/attr/fkeyval
+/attr/fkeyvalcomm
+/attr/fkeyvaltype
+/attr/fkeyvalwin
+/basic/simple
+/basic/sendrecv
+/basic/wtime
+/basic/netpipe
+/basic/patterns
+/basic/srtest
+/basic/self
+/basic/adapt
+/basic/allmpi
+/basic/Netpipe.out
+/coll/bcasttest
+/coll/allred
+/coll/alltoallv
+/coll/coll8
+/coll/coll13
+/coll/alltoallv
+/coll/redscat
+/coll/coll9
+/coll/coll7
+/coll/coll6
+/coll/coll5
+/coll/coll4
+/coll/coll3
+/coll/coll2
+/coll/allredmany
+/coll/scantst
+/coll/longuser
+/coll/coll10
+/coll/coll11
+/coll/coll12
+/coll/scatterv
+/coll/scattern
+/coll/rerr
+/coll/bcast2
+/coll/bcast3
+/coll/exscan2
+/coll/exscan
+/coll/icallgather
+/coll/icallgatherv
+/coll/icallreduce
+/coll/icalltoall
+/coll/icbarrier
+/coll/icbcast
+/coll/icgather
+/coll/icgatherv
+/coll/icreduce
+/coll/icscatter
+/coll/icscatterv
+/coll/allgatherv2
+/coll/alltoallv0
+/comm/dup
+/comm/ic1
+/comm/cfree
+/comm/commname
+/comm/dupic
+/comm/ctxalloc
+/cxx/testlist
+/cxx/coll/uallreduce
+/cxx/coll/ureduce
+/cxx/coll/uscan
+/cxx/coll/uexscan
+/cxx/coll/icbcastx
+/cxx/coll/icbarrierx
+/cxx/coll/icgatherx
+/cxx/coll/icgathervx
+/cxx/coll/icscatterx
+/cxx/coll/icscattervx
+/cxx/coll/icallgatherx
+/cxx/coll/icallgathervx
+/cxx/coll/icallreducex
+/cxx/io/iwritex.cxx
+/cxx/io/iwriteatx.cxx
+/cxx/io/iwriteshx.cxx
+/cxx/io/writex.cxx
+/cxx/io/writeatx.cxx
+/cxx/io/writeallx.cxx
+/cxx/io/writeordx.cxx
+/cxx/io/writeordbex.cxx
+/cxx/io/writeshx.cxx
+/cxx/io/writeatallx.cxx
+/cxx/io/writeatallbex.cxx
+/cxx/io/writeallbex.cxx
+/cxx/io/iwritenosx.cxx
+/cxx/io/iwriteatnosx.cxx
+/cxx/io/iwriteshnosx.cxx
+/cxx/io/writenosx.cxx
+/cxx/io/writeatnosx.cxx
+/cxx/io/writeallnosx.cxx
+/cxx/io/writeordnosx.cxx
+/cxx/io/writeordbenosx.cxx
+/cxx/io/writeshnosx.cxx
+/cxx/io/writeatallnosx.cxx
+/cxx/io/writeatallbenosx.cxx
+/cxx/io/writeallbenosx.cxx
+/cxx/io/iwritex
+/cxx/io/iwriteatx
+/cxx/io/writex
+/cxx/io/writeatx
+/cxx/io/writeallx
+/cxx/io/writeordx
+/cxx/io/writeordbex
+/cxx/io/writeshx
+/cxx/io/writeatallx
+/cxx/io/writeatallbex
+/cxx/io/writeallbex
+/cxx/io/iwritenosx
+/cxx/io/iwriteatnosx
+/cxx/io/writenosx
+/cxx/io/writeatnosx
+/cxx/io/writeallnosx
+/cxx/io/writeordnosx
+/cxx/io/writeordbenosx
+/cxx/io/writeshnosx
+/cxx/io/writeatallnosx
+/cxx/io/writeatallbenosx
+/cxx/io/writeallbenosx
+/cxx/pt2pt/bsend1cxx
+/cxx/spawn/namepubx
+/cxx/spawn/spawnintrax
+/cxx/spawn/spawnintrax
+/cxx/spawn/spawnargvx
+/cxx/spawn/selfconaccx
+/datatype/segtest
+/datatype/typename
+/datatype/contents
+/datatype/struct-pack
+/datatype/triangular-pack
+/datatype/slice-pack
+/datatype/simple-pack
+/datatype/transpose-pack
+/datatype/lbub
+/datatype/bsend1
+/datatype/getpartelm
+/datatype/localpack
+/datatype/zeroparms
+/errhan/errstring
+/errhan/errcode.c
+/errhan/errcode
+/errhan/adderr
+/errhan/errring
+/errors/testlist
+/errors/coll/noalias
+/errors/coll/rerr
+/errors/coll/bcastlength
+/errors/cxx/testlist
+/errors/errhan/errstring
+/errors/errhan/errcode.c
+/errors/errhan/errcode
+/errors/errhan/adderr
+/errors/errhan/errring
+/errors/group/rerr
+/errors/io/fileerrret
+/errors/pt2pt/proberank
+/errors/pt2pt/truncmsg2
+/errors/spawn/badport
+/errors/topo/cartsmall
+/f77/testlist
+/f77/attr/baseattr
+/f77/attr/attraints.h
+/f77/datatype/typeaints.h
+/f77/ext/add1size.h
+/f77/ext/c2f2cf
+/f77/ext/testlist
+/f77/info/infotest
+/f77/io/iwritef.f
+/f77/io/iwriteatf.f
+/f77/io/iwriteshf.f
+/f77/io/writef.f
+/f77/io/writeatf.f
+/f77/io/writeallf.f
+/f77/io/writeordf.f
+/f77/io/writeordbef.f
+/f77/io/writeshf.f
+/f77/io/writeatallf.f
+/f77/io/writeatallbef.f
+/f77/io/writeallbef.f
+/f77/io/iwritef
+/f77/io/iwriteatf
+/f77/io/writef
+/f77/io/writeatf
+/f77/io/writeallf
+/f77/io/writeordf
+/f77/io/writeordbef
+/f77/io/writeshf
+/f77/io/writeatall
+/f77/io/writeatallbef
+/f77/io/writeallbef
+/f77/io/iooffset.h
+/f77/io/iodisp.h
+/f77/io/ioaint.h
+/f77/pt2pt/attr1aints.h
+/f77/rma/addsize.h
+/f77/spawn/type1aint.h
+/f77/spawn/connaccf
+/f77/spawn/namepubf
+/f77/spawn/spawnargvf
+/f77/spawn/spawnmultf
+/f77/spawn/spawnf
+/f77/spawn/spawnmult2f
+/f90/testlist
+/f90/util
+/f90/attr/baseattrf90.f90
+/f90/attr/baseattr2f90.f90
+/f90/attr/baseattrwinf90.f90
+/f90/attr/commattrf90.f90
+/f90/attr/commattr2f90.f90
+/f90/attr/commattr3f90.f90
+/f90/attr/typeattrf90.f90
+/f90/attr/typeattr2f90.f90
+/f90/attr/typeattr3f90.f90
+/f90/attr/winattrf90.f90
+/f90/attr/winattr2f90.f90
+/f90/attr/Makefile.sm
+/f90/attr/testlist
+/f90/coll/uallreducef90.f90
+/f90/coll/alltoallwf90.f90
+/f90/coll/exscanf90.f90
+/f90/coll/inplacef90.f90
+/f90/coll/allredint8f90.f90
+/f90/coll/allredopttf90.f90
+/f90/coll/Makefile.sm
+/f90/coll/testlist
+/f90/comm/Makefile.sm
+/f90/comm/testlist
+/f90/comm/commerrf90.f90
+/f90/comm/commnamef90.f90
+/f90/datatype/Makefile.sm
+/f90/datatype/testlist
+/f90/datatype/typenamef90.f90
+/f90/datatype/packef90.f90
+/f90/datatype/typecntsf90.f90
+/f90/datatype/typem2f90.f90
+/f90/datatype/typesnamef90.f90
+/f90/datatype/typesubf90.f90
+/f90/datatype/gaddressf90.f90
+/f90/datatype/indtype
+/f90/ext/Makefile.sm
+/f90/ext/testlist
+/f90/ext/testlist.in
+/f90/ext/allocmemf90.f90
+/f90/ext/allocmem90.f90
+/f90/ext/c2f2cf90.f90
+/f90/ext/c2f902c.c
+/f90/ext/c2f90mult.c
+/f90/ext/ctypesf90romc.c
+/f90/ext/ctypesinf90.f90
+/f90/info/Makefile.sm
+/f90/info/infotestf90.f90
+/f90/info/infotest2f90.f90
+/f90/info/infotest
+/f90/info/testlist
+/f90/init/Makefile.sm
+/f90/init/testlist
+/f90/init/baseenvf90.f90
+/f90/io/shpositionf90.f90
+/f90/io/fileerrf90.f90
+/f90/io/fileinfof90.f90
+/f90/io/miscfilef90.f90
+/f90/io/atomicityf90.f90
+/f90/io/setviewcurf90.f90
+/f90/io/iwritef90.f90
+/f90/io/iwriteatf90.f90
+/f90/io/iwriteshf90.f90
+/f90/io/writef90.f90
+/f90/io/writeatf90.f90
+/f90/io/writeallf90.f90
+/f90/io/writeordf90.f90
+/f90/io/writeordbef90.f90
+/f90/io/writeshf90.f90
+/f90/io/writeatallf90.f90
+/f90/io/writeatallbef90.f90
+/f90/io/writeallbef90.f90
+/f90/io/c2f2ciof90.f90
+/f90/io/c2f902cio.c
+/f90/io/c2f90multio.c
+/f90/io/Makefile.sm
+/f90/io/testlist
+/f90/io/ioharness.defn
+/f90/io/ioharness.tlt
+/f90/misc/sizeof
+/f90/misc/f77tof90
+/f90/pt2pt/Makefile.sm
+/f90/pt2pt/testlist
+/f90/pt2pt/statusesf90.f90
+/f90/pt2pt/greqf90.f90
+/f90/pt2pt/greqf90
+/f90/pt2pt/statusesf90
+/f90/rma/Makefile.sm
+/f90/rma/testlist
+/f90/rma/winaccf90.f90
+/f90/rma/winerrf90.f90
+/f90/rma/winfencef90.f90
+/f90/rma/wingetf90.f90
+/f90/rma/wingroupf90.f90
+/f90/rma/winnamef90.f90
+/f90/rma/winscale1f90.f90
+/f90/rma/winscale2f90.f90
+/f90/rma/winaccf90
+/f90/rma/winerrf90
+/f90/rma/winfencef90
+/f90/rma/wingetf90
+/f90/rma/wingroupf90
+/f90/rma/winnamef90
+/f90/rma/winscale1f90
+/f90/rma/winscale2f90
+/f90/rma/c2f2cwinf90.f90
+/f90/rma/c2f902cwin.c
+/f90/spawn/Makefile.sm
+/f90/spawn/testlist
+/f90/spawn/namepubf90.f90
+/f90/spawn/spawnf90.f90
+/f90/spawn/spawnargvf90.f90
+/f90/spawn/spawnmultf90.f90
+/f90/spawn/spawnmult2f90.f90
+/f90/spawn/connaccf90.f90
+/f90/spawn/namepubf90
+/f90/spawn/connaccf90
+/f90/spawn/spawnargvf90
+/f90/spawn/spawnf90
+/f90/spawn/spawnmult2f90
+/f90/spawn/spawnmultf90
+/f90/timer/testlist
+/f90/timer/wtimef90
+/f90/topo/Makefile.sm
+/f90/topo/testlist
+/f90/topo/cartcrf90.f90
+/group/errstring
+/group/grouptest
+/group/groupcreate
+/group/grouptest2
+/group/glpid
+/group/groupnullincl
+/group/gtranks
+/info/infodel
+/info/infodup
+/info/infoorder
+/info/infovallen
+/init/exitst1
+/init/exitst2
+/init/initstat
+/init/timeout
+/init/version
+/io/rdwrord
+/io/testfile*
+/io/async
+/io/async_any
+/io/getextent
+/io/i_noncontig
+/io/rdwrzero
+/io/setinfo
+/io/setviewcur
+/io/userioerr
+/maint/testmerge
+/maint/conftimestamp
+/maint/f77tof90
+/manual/singjoin
+/manual/testconnect
+/manual/manyconnect
+/manual/dimsbalanced
+/manual/test-port
+/perf/transp-datatype
+/perf/twovec
+/perf/sendrecvl
+/pt2pt/dup
+/pt2pt/bsend1
+/pt2pt/bsend2
+/pt2pt/bsend3
+/pt2pt/bsend4
+/pt2pt/isendself
+/pt2pt/bsendfrag
+/pt2pt/cancelrecv
+/pt2pt/errinstatta
+/pt2pt/errinstatts
+/pt2pt/errinstatwa
+/pt2pt/errinstatws
+/pt2pt/inactivereq
+/rma/ircpi
+/rma/test1
+/rma/test2
+/rma/test3
+/rma/test4
+/rma/test5
+/rma/transpose1
+/rma/transpose2
+/rma/transpose3
+/rma/transpose4
+/rma/transpose5
+/rma/transpose6
+/rma/transpose7
+/rma/fetchandadd
+/rma/fetchandadd_tree
+/rma/winname
+/rma/accfence1
+/rma/accfence2
+/rma/allocmem
+/rma/getfence1
+/rma/getgroup
+/rma/putfence1
+/rma/putpscw1
+/rma/wintest
+/spawn/namepub
+/spawn/disconnect3
+/spawn/spaiccreate
+/spawn/spawn1
+/spawn/spawn2
+/threads/pt2pt/threaded_sr
+/threads/pt2pt/alltoall
+/threads/pt2pt/sendselfth
+/threads/spawn/threaded_sr
+/threads/spawn/alltoall
+/threads/spawn/sendselfth
+/topo/cartmap1
+/topo/cartshift1
+/topo/cartsuball
+/topo/dims1
+/topo/graphmap1
+/topo/topodup
+/topo/topotest
+
+# other entries, should be all executables at this point
+/attr/attr2type
+/attr/attrend
+/attr/attrend2
+/attr/keyval_double_free
+/coll/allgather2
+/coll/allgather3
+/coll/allgatherv3
+/coll/allgatherv4
+/coll/allred2
+/coll/allred3
+/coll/allred4
+/coll/allred5
+/coll/allred6
+/coll/alltoall1
+/coll/alltoallw1
+/coll/alltoallw2
+/coll/alltoallw_zeros
+/coll/bcastzerotype
+/coll/gather
+/coll/gather2
+/coll/iallred
+/coll/ibarrier
+/coll/icalltoallv
+/coll/icalltoallw
+/coll/nballtoall1
+/coll/nbcoll2
+/coll/nbredscat
+/coll/nbredscat3
+/coll/nbredscatinter
+/coll/nonblocking
+/coll/nonblocking2
+/coll/nonblocking3
+/coll/op_commutative
+/coll/opband
+/coll/opbor
+/coll/opbxor
+/coll/opland
+/coll/oplor
+/coll/oplxor
+/coll/opmax
+/coll/opmaxloc
+/coll/opmin
+/coll/opminloc
+/coll/opprod
+/coll/opsum
+/coll/red3
+/coll/red4
+/coll/red_scat_block
+/coll/red_scat_block2
+/coll/redscat3
+/coll/redscatbkinter
+/coll/redscatblk3
+/coll/redscatinter
+/coll/reduce
+/coll/scatter2
+/coll/scatter3
+/coll/uoplong
+/comm/cmfree
+/comm/cmsplit
+/comm/cmsplit2
+/comm/cmsplit_type
+/comm/comm_create_group
+/comm/comm_group_half
+/comm/comm_group_rand
+/comm/comm_idup
+/comm/comm_info
+/comm/commcreate1
+/comm/ctxsplit
+/comm/dup_with_info
+/comm/ic2
+/comm/iccreate
+/comm/icgroup
+/comm/icm
+/comm/icsplit
+/comm/probe-intercomm
+/cxx/attr/attricx
+/cxx/attr/attrtx
+/cxx/attr/baseattrcommx
+/cxx/attr/fkeyvalcommx
+/cxx/attr/fkeyvaltypex
+/cxx/coll/alltoallw2x
+/cxx/coll/arcomplex
+/cxx/coll/icalltoallx
+/cxx/coll/icreducex
+/cxx/coll/reduceboolx
+/cxx/coll/uallredx
+/cxx/comm/commname2
+/cxx/datatype/packsizex
+/cxx/datatype/typecntsx
+/cxx/datatype/typemiscx
+/cxx/datatype/typenamex
+/cxx/errhan/commcallx
+/cxx/info/infodelx
+/cxx/info/infodupx
+/cxx/info/infoorderx
+/cxx/info/infovallenx
+/cxx/init/baseenv
+/cxx/init/initstat2x
+/cxx/init/initstatx
+/cxx/io/fileerrx
+/cxx/io/fileinfox
+/cxx/io/filemiscx
+/cxx/io/iwriteshnosx
+/cxx/io/iwriteshx
+/cxx/io/seekavail
+/cxx/io/setinfox
+/cxx/io/shpositionx
+/cxx/pt2pt/sendrecvx
+/cxx/rma/fkeyvalwinx
+/cxx/rma/getgroupx
+/cxx/rma/wincallx
+/cxx/rma/winfencex
+/cxx/rma/winnamex
+/cxx/rma/winscale1x
+/cxx/rma/winscale2x
+/datatype/blockindexed-misc
+/datatype/blockindexed-zero-count
+/datatype/contig-zero-count
+/datatype/contigstruct
+/datatype/cxx-types
+/datatype/darray-cyclic
+/datatype/darray-pack
+/datatype/gaddress
+/datatype/get-elements
+/datatype/get-elements-pairtype
+/datatype/hindexed-zeros
+/datatype/hindexed_block
+/datatype/hindexed_block_contents
+/datatype/indexed-misc
+/datatype/large-count
+/datatype/longdouble
+/datatype/lots-of-types
+/datatype/pairtype-pack
+/datatype/pairtype-size-extent
+/datatype/simple-commit
+/datatype/simple-pack-external
+/datatype/simple-resized
+/datatype/simple-size-extent
+/datatype/sizedtypes
+/datatype/slice-pack-external
+/datatype/struct-derived-zeros
+/datatype/struct-empty-el
+/datatype/struct-ezhov
+/datatype/struct-no-real-types
+/datatype/struct-verydeep
+/datatype/struct-zero-count
+/datatype/subarray
+/datatype/subarray-pack
+/datatype/tfree
+/datatype/tmatchsize
+/datatype/tresized
+/datatype/tresized2
+/datatype/typecommit
+/datatype/typefree
+/datatype/typelb
+/datatype/unpack
+/datatype/unusual-noncontigs
+/datatype/zeroblks
+/errhan/commcall
+/errhan/errfatal
+/errhan/predef_eh
+/errors/attr/keyvalmis
+/errors/basic/debabort
+/errors/basic/lefthandles
+/errors/coll/reduce_local
+/errors/comm/ccreate1
+/errors/comm/cfree
+/errors/comm/manysplit
+/errors/comm/too_many_comms
+/errors/comm/too_many_comms2
+/errors/comm/too_many_comms3
+/errors/comm/userdup
+/errors/cxx/errhan/commerrx
+/errors/cxx/errhan/errgetx
+/errors/cxx/errhan/errsetx
+/errors/cxx/errhan/throwtest
+/errors/cxx/io/errgetfilex
+/errors/cxx/io/fileerrretx
+/errors/cxx/io/throwtestfilex
+/errors/datatype/getcnterr
+/errors/f77/errhan/uerrhandf
+/errors/f90/errhan/
+/errors/faults/collf1
+/errors/faults/collf2
+/errors/faults/pt2ptf1
+/errors/faults/pt2ptf2
+/errors/group/gerr
+/errors/io/openerr
+/errors/pt2pt/errinstatta
+/errors/pt2pt/errinstatts
+/errors/pt2pt/errinstatwa
+/errors/pt2pt/errinstatws
+/errors/pt2pt/truncmsg1
+/errors/rma/cas_type_check
+/errors/rma/win_sync_complete
+/errors/rma/win_sync_free_at
+/errors/rma/win_sync_free_pt
+/errors/rma/win_sync_lock_at
+/errors/rma/win_sync_lock_fence
+/errors/rma/win_sync_lock_pt
+/errors/rma/win_sync_nested
+/errors/rma/win_sync_op
+/errors/rma/win_sync_unlock
+/errors/rma/winerr
+/errors/rma/winerr2
+/errors/spawn/lookup_name
+/errors/spawn/unpub
+/f77/attr/attrmpi1f
+/f77/attr/baseattr2f
+/f77/attr/baseattrf
+/f77/attr/commattr2f
+/f77/attr/commattr3f
+/f77/attr/commattrf
+/f77/attr/typeattr2f
+/f77/attr/typeattr3f
+/f77/attr/typeattrf
+/f77/coll/allredint8f
+/f77/coll/allredopttf
+/f77/coll/alltoallvf
+/f77/coll/alltoallwf
+/f77/coll/exscanf
+/f77/coll/inplacef
+/f77/coll/nonblocking_inpf
+/f77/coll/nonblockingf
+/f77/coll/red_scat_blockf
+/f77/coll/redscatf
+/f77/coll/reducelocalf
+/f77/coll/split_typef
+/f77/coll/uallreducef
+/f77/coll/vw_inplacef
+/f77/comm/commerrf
+/f77/comm/commnamef
+/f77/datatype/allctypesf
+/f77/datatype/gaddressf
+/f77/datatype/hindex1f
+/f77/datatype/hindexed_blockf
+/f77/datatype/packef
+/f77/datatype/typecntsf
+/f77/datatype/typem2f
+/f77/datatype/typename3f
+/f77/datatype/typenamef
+/f77/datatype/typesnamef
+/f77/datatype/typesubf
+/f77/ext/c2fmult
+/f77/ext/ctypesinf
+/f77/info/infotest2f
+/f77/info/infotestf
+/f77/init/baseenvf
+/f77/io/atomicityf
+/f77/io/c2f2ciof
+/f77/io/c2fmultio
+/f77/io/fileerrf
+/f77/io/fileinfof
+/f77/io/iwriteshf
+/f77/io/miscfilef
+/f77/io/setviewcurf
+/f77/io/shpositionf
+/f77/io/writeatallf
+/f77/pt2pt/allpairf
+/f77/pt2pt/greqf
+/f77/pt2pt/mprobef
+/f77/pt2pt/statusesf
+/f77/rma/baseattrwinf
+/f77/rma/c2f2cwinf
+/f77/rma/winaccf
+/f77/rma/winattr2f
+/f77/rma/winattrf
+/f77/rma/winerrf
+/f77/rma/winfencef
+/f77/rma/wingetf
+/f77/rma/wingroupf
+/f77/rma/winnamef
+/f77/rma/winscale1f
+/f77/rma/winscale2f
+/f77/topo/cartcrf
+/f77/topo/dgraph_unwgtf
+/f77/topo/dgraph_wgtf
+/f90/attr/attrlangf90
+/f90/attr/attrmpi1f90
+/f90/attr/baseattr2f90
+/f90/attr/baseattr3f90
+/f90/attr/baseattrf90
+/f90/attr/commattr2f90
+/f90/attr/commattr3f90
+/f90/attr/commattrf90
+/f90/attr/fandcattrf90
+/f90/attr/typeattr2f90
+/f90/attr/typeattr3f90
+/f90/attr/typeattrf90
+/f90/datatype/allctypesf90
+/f90/datatype/createf90
+/f90/datatype/gaddressf90
+/f90/datatype/get_elem_d
+/f90/datatype/get_elem_u
+/f90/datatype/hindex1f90
+/f90/datatype/hindexed_blockf90
+/f90/datatype/kinds
+/f90/datatype/packef90
+/f90/datatype/sizeof
+/f90/datatype/structf
+/f90/datatype/trf90
+/f90/datatype/typecntsf90
+/f90/datatype/typem2f90
+/f90/datatype/typename3f90
+/f90/datatype/typenamef90
+/f90/datatype/typesnamef90
+/f90/datatype/typesubf90
+/f90/ext/c2f2cf90
+/f90/ext/c2f90mult
+/f90/ext/ctypesinf90
+/f90/f90types/createf90types
+/f90/io/atomicityf90
+/f90/io/c2f2ciof90
+/f90/io/c2f90multio
+/f90/io/fileerrf90
+/f90/io/fileinfof90
+/f90/io/iwriteatf90
+/f90/io/iwritef90
+/f90/io/iwriteshf90
+/f90/io/miscfilef90
+/f90/io/setviewcurf90
+/f90/io/shpositionf90
+/f90/io/writeallbef90
+/f90/io/writeallf90
+/f90/io/writeatallbef90
+/f90/io/writeatallf90
+/f90/io/writeatf90
+/f90/io/writef90
+/f90/io/writeordbef90
+/f90/io/writeordf90
+/f90/io/writeshf90
+/f90/misc/sizeof2
+/f90/rma/baseattrwinf90
+/f90/rma/c2f2cwinf90
+/f90/rma/winattr2f90
+/f90/rma/winattrf90
+/group/gtranksperf
+/info/infoenv
+/info/infomany
+/info/infomany2
+/info/infotest
+/init/attrself
+/init/exitst3
+/init/finalized
+/init/library_version
+/io/resized
+/manual/mpi_t/mpit_test
+/manual/mpi_t/mpit_test2
+/manual/mpi_t/nem_fbox_fallback_to_queue_count
+/manual/mpi_t/unexpected_recvq_buffer_size
+/manual/segfault
+/manual/spawntest_child
+/manual/spawntest_master
+/manual/testconnectserial
+/mpi_t/mpi_t_str
+/perf/allredtrace
+/perf/commcreatep
+/perf/dtpack
+/perf/indexperf
+/perf/manyrma
+/perf/nestvec
+/perf/nestvec2
+/perf/non_zero_root
+/perf/timer
+/pt2pt/anyall
+/pt2pt/bottom
+/pt2pt/bsend5
+/pt2pt/bsendalign
+/pt2pt/bsendpending
+/pt2pt/eagerdt
+/pt2pt/greq1
+/pt2pt/icsend
+/pt2pt/isendselfprobe
+/pt2pt/large_message
+/pt2pt/mprobe
+/pt2pt/pingping
+/pt2pt/probe-unexp
+/pt2pt/probenull
+/pt2pt/pscancel
+/pt2pt/rcancel
+/pt2pt/rqfreeb
+/pt2pt/rqstatus
+/pt2pt/scancel
+/pt2pt/scancel2
+/pt2pt/sendall
+/pt2pt/sendflood
+/pt2pt/sendrecv1
+/pt2pt/sendrecv2
+/pt2pt/sendrecv3
+/pt2pt/sendself
+/pt2pt/waitany-null
+/pt2pt/waittestnull
+/rma/accfence2_am
+/rma/accpscw1
+/rma/adlb_mimic1
+/rma/attrorderwin
+/rma/baseattrwin
+/rma/compare_and_swap
+/rma/contention_put
+/rma/contention_putget
+/rma/contig_displ
+/rma/epochtest
+/rma/fetch_and_op_char
+/rma/fetch_and_op_double
+/rma/fetch_and_op_int
+/rma/fetch_and_op_long
+/rma/fetch_and_op_long_double
+/rma/fetch_and_op_short
+/rma/fetchandadd_am
+/rma/fetchandadd_tree_am
+/rma/fkeyvalwin
+/rma/flush
+/rma/get_acc_local
+/rma/get_accumulate_double
+/rma/get_accumulate_double_derived
+/rma/get_accumulate_int
+/rma/get_accumulate_int_derived
+/rma/get_accumulate_long
+/rma/get_accumulate_long_derived
+/rma/get_accumulate_short
+/rma/get_accumulate_short_derived
+/rma/linked_list
+/rma/linked_list_bench_lock_all
+/rma/linked_list_bench_lock_excl
+/rma/linked_list_bench_lock_shr
+/rma/linked_list_bench_lock_shr_nocheck
+/rma/linked_list_fop
+/rma/linked_list_lockall
+/rma/lockcontention
+/rma/lockcontention2
+/rma/lockcontention3
+/rma/locknull
+/rma/lockopts
+/rma/manyrma2
+/rma/mixedsync
+/rma/mutex_bench
+/rma/mutex_bench_shared
+/rma/nullpscw
+/rma/pscw_ordering
+/rma/put_base
+/rma/put_bottom
+/rma/putfidx
+/rma/req_example
+/rma/reqops
+/rma/rmanull
+/rma/rmazero
+/rma/selfrma
+/rma/strided_acc_indexed
+/rma/strided_acc_onelock
+/rma/strided_acc_subarray
+/rma/strided_get_indexed
+/rma/strided_getacc_indexed
+/rma/strided_getacc_indexed_shared
+/rma/strided_putget_indexed
+/rma/strided_putget_indexed_shared
+/rma/test1_am
+/rma/test1_dt
+/rma/test2_am
+/rma/test3_am
+/rma/test4_am
+/rma/test5_am
+/rma/win_dynamic_acc
+/rma/win_flavors
+/rma/win_info
+/rma/win_shared
+/rma/win_shared_noncontig
+/rma/win_shared_noncontig_put
+/rma/wincall
+/rma/window_creation
+/spawn/concurrent_spawns
+/spawn/disconnect
+/spawn/disconnect2
+/spawn/disconnect_reconnect
+/spawn/disconnect_reconnect2
+/spawn/disconnect_reconnect3
+/spawn/join
+/spawn/multiple_ports
+/spawn/multiple_ports2
+/spawn/pgroup_connect_test
+/spawn/pgroup_intercomm_test
+/spawn/selfconacc
+/spawn/spaconacc
+/spawn/spaconacc2
+/spawn/spaiccreate2
+/spawn/spawnargv
+/spawn/spawninfo1
+/spawn/spawnintra
+/spawn/spawnmanyarg
+/spawn/spawnminfo1
+/spawn/spawnmult2
+/spawn/taskmaster
+/threads/comm/comm_create_group_threads
+/threads/comm/comm_create_threads
+/threads/comm/comm_dup_deadlock
+/threads/comm/ctxdup
+/threads/comm/dup_leak_test
+/threads/init/initth
+/threads/pt2pt/threads
+/threads/spawn/multispawn
+/threads/spawn/th_taskmaster
+/topo/cartcreates
+/topo/cartzero
+/topo/dgraph_unwgt
+/topo/dims2
+/topo/distgraph1
+/topo/graphcr
+/topo/graphcr2
+/topo/neighb_coll
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 600 -------------------------------
test/mpi/.gitignore | 993 +++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 993 insertions(+), 600 deletions(-)
create mode 100644 test/mpi/.gitignore
hooks/post-receive
--
MPICH primary repository
1
0
[mpich] MPICH primary repository branch, master, updated. v3.0.3-7-g4753a4e
by noreply@mpich.org 05 Apr '13
by noreply@mpich.org 05 Apr '13
05 Apr '13
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 4753a4e48d8883c6a7af0afe4399375063cf6529 (commit)
from 505d84a3e2da4d9593ec0dcce541e89449fd634c (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/4753a4e48d8883c6a7af0afe439937506…
commit 4753a4e48d8883c6a7af0afe4399375063cf6529
Author: Dave Goodell <goodell(a)mcs.anl.gov>
Date: Fri Apr 5 14:14:34 2013 -0500
missed "mpiinfo.h" include in [9bb89788]
No reviewer.
diff --git a/src/mpi/comm/comm_set_info.c b/src/mpi/comm/comm_set_info.c
index 85be7b6..71445c0 100644
--- a/src/mpi/comm/comm_set_info.c
+++ b/src/mpi/comm/comm_set_info.c
@@ -7,6 +7,7 @@
#include "mpiimpl.h"
#include "mpl_utlist.h"
+#include "mpiinfo.h"
/* -- Begin Profiling Symbol Block for routine MPI_Comm_set_info */
#if defined(HAVE_PRAGMA_WEAK)
-----------------------------------------------------------------------
Summary of changes:
src/mpi/comm/comm_set_info.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
hooks/post-receive
--
MPICH primary repository
1
0