From: adrian <adr...@us...> - 2012-02-09 23:11:04
|
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 "compose-hpc". The branch, master has been updated via 31dec5b35fee3f49bd456307fa8ab665bd52dd54 (commit) via 7008f051fb3ca6498d68cc917c3164572f66a723 (commit) via 58b217bb6b70319dbc079ab5112963eb3ee215a7 (commit) via 8dd91da3aa6cb39170076197a0e9379c83284b97 (commit) from 4bf0abda8c4a8a32f36d26046bb89d07dfafc9e4 (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 ----------------------------------------------------------------- commit 31dec5b35fee3f49bd456307fa8ab665bd52dd54 Author: Adrian Prantl <ad...@ll...> Date: Thu Feb 9 15:10:23 2012 -0800 significantly improved Doxygen documentation commit 7008f051fb3ca6498d68cc917c3164572f66a723 Author: Adrian Prantl <ad...@ll...> Date: Thu Feb 9 15:10:06 2012 -0800 renamed chpl/ to runtime/ commit 58b217bb6b70319dbc079ab5112963eb3ee215a7 Author: Adrian Prantl <ad...@ll...> Date: Thu Feb 9 13:46:22 2012 -0800 fixed several pylint warnings commit 8dd91da3aa6cb39170076197a0e9379c83284b97 Author: Adrian Prantl <ad...@ll...> Date: Fri Feb 3 14:59:17 2012 -0800 added preliminary nightly test support ----------------------------------------------------------------------- Summary of changes: braid/Doxyfile.in | 6 +- braid/Makefile.am | 30 +- braid/Makefile.in | 771 +++++++++--------- braid/braid/braid.py | 74 ++- braid/braid/burg.py | 2 +- braid/braid/chapel/__init__.py | 7 + braid/braid/chapel/args.py | 3 +- braid/braid/chapel/backend.py | 16 +- braid/braid/chapel/cgen.py | 11 +- braid/braid/chapel/chpl.py | 1 + braid/braid/chapel/conversions.burg | 22 + braid/braid/codegen.py | 2 +- braid/braid/ior.py | 1 + braid/braid/ior_template.py | 2 + braid/braid/parse_tree.py | 2 +- braid/braid/patmat.py | 4 +- braid/braid/utils.py | 2 +- braid/chpl/Makefile.include | 188 ----- braid/configure | 846 +++++++++++--------- braid/configure.ac | 7 + braid/regression/cronjobs/casc-ubuntu-10.4.profile | 35 + braid/regression/cronjobs/gantlet_cron.sh | 127 +++ braid/regression/cronjobs/make_all.test | 158 ++++ braid/regression/cronjobs/make_check.test | 142 ++++ braid/regression/cronjobs/make_dist.test | 203 +++++ braid/regression/cronjobs/make_distcheck.test | 154 ++++ braid/regression/cronjobs/make_installcheck.test | 138 ++++ braid/regression/cronjobs/sendmail.py | 49 ++ braid/regression/interop/Makefile.include | 6 +- braid/regression/interop/cronjobs/make_check.test | 151 ++++ .../interop/struct/runChapel/structtest.chpl | 389 +++++++++ braid/runtime/Makefile.include | 188 +++++ braid/{chpl => runtime}/README | 0 braid/{chpl => runtime}/array.inc | 0 braid/{chpl => runtime}/array_support.inc | 0 braid/{chpl => runtime}/barray.inc | 0 braid/{chpl => runtime}/chpl_sidl_array.h | 0 braid/{chpl => runtime}/darray.inc | 0 38 files changed, 2730 insertions(+), 1007 deletions(-) delete mode 100644 braid/chpl/Makefile.include create mode 100644 braid/regression/cronjobs/casc-ubuntu-10.4.profile create mode 100755 braid/regression/cronjobs/gantlet_cron.sh create mode 100644 braid/regression/cronjobs/make_all.test create mode 100644 braid/regression/cronjobs/make_check.test create mode 100644 braid/regression/cronjobs/make_dist.test create mode 100644 braid/regression/cronjobs/make_distcheck.test create mode 100644 braid/regression/cronjobs/make_installcheck.test create mode 100755 braid/regression/cronjobs/sendmail.py create mode 100644 braid/regression/interop/cronjobs/make_check.test create mode 100644 braid/regression/interop/struct/runChapel/structtest.chpl create mode 100644 braid/runtime/Makefile.include rename braid/{chpl => runtime}/README (100%) rename braid/{chpl => runtime}/array.inc (100%) rename braid/{chpl => runtime}/array_support.inc (100%) rename braid/{chpl => runtime}/barray.inc (100%) rename braid/{chpl => runtime}/chpl_sidl_array.h (100%) rename braid/{chpl => runtime}/darray.inc (100%) hooks/post-receive -- compose-hpc |