test-bugzilla-files/execute.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 8b51e240a8033f9a6728d2cd8ccee651fb6fb501 Author: Gabor Kelemen <[email protected]> AuthorDate: Fri Oct 28 14:30:19 2022 +0200 Commit: Caolán McNamara <[email protected]> CommitDate: Fri Oct 28 15:53:04 2022 +0200 Hide debug output from screen In a Jenkins-based setup this would be saved for each job, eating lots of disk space for no good reason. Having it on disk for the current run should be enough. Change-Id: I3aef6d5a72207a4591775089acbcb82c224251cc Reviewed-on: https://gerrit.libreoffice.org/c/dev-tools/+/141978 Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Caolán McNamara <[email protected]> diff --git a/test-bugzilla-files/execute.sh b/test-bugzilla-files/execute.sh index 158e641..e6dcde4 100755 --- a/test-bugzilla-files/execute.sh +++ b/test-bugzilla-files/execute.sh @@ -5,5 +5,5 @@ dir=${PWD} source ${dir}/config mkdir -p ${CRASHTESTDATA}/control/$dir_name cd ${CRASHTESTDATA}/control/$dir_name -TMPDIR=${CRASHTESTDATA}/tmpdir ${INSTDIR}/program/python ${dir}/test-bugzilla-files.py --soffice=path:${INSTDIR}/program/soffice --userdir=file://${USERDIR}/libreoffice_$dir_name/4 $1 2>&1 | tee ${CRASHTESTDATA}/console_$dir_name.log +TMPDIR=${CRASHTESTDATA}/tmpdir ${INSTDIR}/program/python ${dir}/test-bugzilla-files.py --soffice=path:${INSTDIR}/program/soffice --userdir=file://${USERDIR}/libreoffice_$dir_name/4 $1 >> ${CRASHTESTDATA}/console_$dir_name.log 2>&1 rm -r ${USERDIR}/libreoffice_$dir_name
