The branch, master, has been updated. - Log -----------------------------------------------------------------
commit 073561ca63ee3bca0f4446054c04a5c0b479aa53 Author: Tommaso Cucinotta <[email protected]> Date: Sat Dec 15 12:05:51 2012 +0000 Allow for keeping succesful tests output directories if the V env variable is non-null. diff --git a/development/autotests/run-tests.sh b/development/autotests/run-tests.sh index 3a175e7..a3f7d12 100755 --- a/development/autotests/run-tests.sh +++ b/development/autotests/run-tests.sh @@ -100,7 +100,7 @@ for tf in $(echo "$TESTS"); do if $cmd > test-log.txt 2>&1; then echo Ok cd .. - rm -rf "out-$t"; + if [ "$V" != "" ]; then rm -rf "out-$t"; fi else echo FAILED cd .. ----------------------------------------------------------------------- Summary of changes: development/autotests/run-tests.sh | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) hooks/post-receive -- The LyX Source Repository
