diff options
author | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-09-08 18:39:38 +0000 |
---|---|---|
committer | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-09-08 18:39:38 +0000 |
commit | 191a3078f98944021712b28ffc9fa215cbd5d176 (patch) | |
tree | 469d8dd28f1df3729c8b9fa29e8e7aa8c6f54edb /nightly | |
parent | 79f086dfa765f3ea5a6bcf6354d398b5bf9eb3b3 (diff) |
Added configuration files for Georgia Tech's Cellbuzz cluster.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8587 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'nightly')
-rw-r--r-- | nightly/conf/georgia-tech-cellbuzz.conf | 22 | ||||
-rwxr-xr-x | nightly/conf/georgia-tech-cellbuzz.sendmail | 4 |
2 files changed, 26 insertions, 0 deletions
diff --git a/nightly/conf/georgia-tech-cellbuzz.conf b/nightly/conf/georgia-tech-cellbuzz.conf new file mode 100644 index 00000000..8a23ce94 --- /dev/null +++ b/nightly/conf/georgia-tech-cellbuzz.conf @@ -0,0 +1,22 @@ + +# Specifics for the Georgia Tech Cellbuzz cluster (Fedora Core release 6 on the host +# and IBM BladeCenter QS20 target). +# See also http://wiki.cc.gatech.edu/cellbuzz/index.php/Main_Page. + +ABT_DETAILS="IBM BladeCenter QS20" +ABT_CONFIGURE_OPTIONS="--build=x86_64-linux-gnu --host=powerpc64-unknown-linux --target=powerpc64-unknown-linux STRIP=/opt/cell/bin/ppu-strip CC=/opt/cell/bin/ppu-gcc CPP='/opt/cell/bin/ppu-gcc -E' CXX=/opt/cell/bin/ppu-g++ RANLIB=/opt/cell/bin/ppu-ranlib CCAS=/opt/cell/bin/ppu-gcc" +ABT_RUN_REGTEST="cellbuzz_run_regtest" +ABT_JOBS=3 + +cellbuzz_run_regtest() { + cd valgrind || return $? + VGDIR=$PWD + jobid=`echo "{ cd $VGDIR && perl tests/vg_regtest --all; } >$VGDIR/regtest-output.txt 2>&1" \ + | /usr/pbs/bin/qsub` + echo "Job ID = ${jobid}" + while [ `/usr/pbs/bin/qstat "${jobid}" 2>/dev/null | wc --lines` -gt 0 ] + do + sleep 10 + done + cat regtest-output.txt +} diff --git a/nightly/conf/georgia-tech-cellbuzz.sendmail b/nightly/conf/georgia-tech-cellbuzz.sendmail new file mode 100755 index 00000000..a65f1e15 --- /dev/null +++ b/nightly/conf/georgia-tech-cellbuzz.sendmail @@ -0,0 +1,4 @@ + +#use: subject file-to-mail + +/bin/mailx -s "$1" valgrind-developers@lists.sourceforge.net -- -R bart.vanassche@gmail.com -r bart.vanassche@gmail.com < $2 |