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 51b9bcdf516df768c5acca1a39caa5f8060966b6 (commit) via 20ce02e5599cae0ca1d974a6c38d9687c16ad0f8 (commit) from b111dc3c5739b94505694c0b5d5b7cca364673bb (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/51b9bcdf516df768c5acca1a39caa5f806... commit 51b9bcdf516df768c5acca1a39caa5f8060966b6 Author: Pavan Balaji <[email protected]> Date: Wed Aug 14 16:53:46 2013 -0500 Check whether todo tickets are valid. We need to make sure that the xfail tickets that are added to the test list are not left in there permanently. This script checks whether these tickets are still open and points out of they are not, but the xfail is still listed. Signed-off-by: Ken Raffenetti <[email protected]> diff --git a/maint/check_todo_tickets.sh b/maint/check_todo_tickets.sh new file mode 100755 index 0000000..da24bc7 --- /dev/null +++ b/maint/check_todo_tickets.sh @@ -0,0 +1,15 @@ +#! /bin/sh +# +# (C) 2013 by Argonne National Laboratory. +# See COPYRIGHT in top-level directory. +# + +ticks=`find test/mpi -name testlist | xargs grep xfail | \ + sed -e 's/.*xfail=ticket//g' -e 's/ .*//g' | sort -n | uniq` + +for tt in $ticks ; do + if test -z "`wget -O - http://trac.mpich.org/projects/mpich/query?status=closed\&id=$tt \ + 2> /dev/null | html2text | grep 'No tickets found'`" ; then + echo "ticket $tt does not seem to be open" + fi +done http://git.mpich.org/mpich.git/commitdiff/20ce02e5599cae0ca1d974a6c38d9687c1... commit 20ce02e5599cae0ca1d974a6c38d9687c16ad0f8 Author: Pavan Balaji <[email protected]> Date: Tue Aug 13 12:52:51 2013 -0500 Added a link to the bugs fixed. Signed-off-by: Ken Raffenetti <[email protected]> diff --git a/CHANGES b/CHANGES index a7655f2..a35ea83 100644 --- a/CHANGES +++ b/CHANGES @@ -26,10 +26,16 @@ # Several improvements to the Hydra-SLURM integration. # 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.4..v3.1b2 + A full list of bugs that have been fixed is available at the + following link: + + https://trac.mpich.org/projects/mpich/query?status=closed&group=resolution&m... + =============================================================================== Changes in 3.0.4 ----------------------------------------------------------------------- Summary of changes: CHANGES | 6 ++++++ maint/check_todo_tickets.sh | 15 +++++++++++++++ 2 files changed, 21 insertions(+), 0 deletions(-) create mode 100755 maint/check_todo_tickets.sh hooks/post-receive -- MPICH primary repository