diff options
author | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-09-10 09:07:52 +0000 |
---|---|---|
committer | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-09-10 09:07:52 +0000 |
commit | 6ec6603abc2206fb8f672e4e2bd3e0fcf1f295c0 (patch) | |
tree | 8b6df8fb543a3fb15c62d612a89947c1ac50893f /nightly | |
parent | 209ad836e7eceb023619b8400bbea0632c5ba7e3 (diff) |
Make sure that stderr redirection works both with bash and tcsh.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@8597 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'nightly')
-rw-r--r-- | nightly/conf/georgia-tech-cellbuzz.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nightly/conf/georgia-tech-cellbuzz.conf b/nightly/conf/georgia-tech-cellbuzz.conf index 8a23ce94..9561b37f 100644 --- a/nightly/conf/georgia-tech-cellbuzz.conf +++ b/nightly/conf/georgia-tech-cellbuzz.conf @@ -10,8 +10,8 @@ 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" \ + rm -f regtest-output.txt + jobid=`echo "{ cd $PWD && perl tests/vg_regtest --all; } >& $PWD/regtest-output.txt" \ | /usr/pbs/bin/qsub` echo "Job ID = ${jobid}" while [ `/usr/pbs/bin/qstat "${jobid}" 2>/dev/null | wc --lines` -gt 0 ] |