diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-11-16 22:15:29 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-11-16 22:15:29 +0100 |
commit | fdc671703afc6c3e33235f287226596d4abb09d6 (patch) | |
tree | fc3c4695435cb4deb72636515c8531ecda66a338 | |
parent | ba2388ba622524f4feba0525cee1dfca612640ba (diff) | |
download | jenkins.debian.net-fdc671703afc6c3e33235f287226596d4abb09d6.tar.xz |
torbrowser tests: finetuning (make python output unbuffered & thus grep'able)
-rw-r--r-- | TODO | 5 | ||||
-rwxr-xr-x | bin/test_torbrowser-launcher.sh | 9 |
2 files changed, 8 insertions, 6 deletions
@@ -411,11 +411,12 @@ The following ideas should really only be implemented for the new 'lvc*' tests.. === torbrowser-launcher_* +* new job: merge debian branch in upstream master branch, build a package and install it * not sure how to test updates. maybe just run in yesterdays schroot before upgrading -* notifications should go somewhere public +* notifications should go somewhere public, after a while of testing. * debug why iceweasel is needed to be installed… and ca-certificates too. * run this in qemu and enable apparmor too? -* probably not: test with python-pygame installed too? +* probably not: test with python-pygame installed. == Further ideas... diff --git a/bin/test_torbrowser-launcher.sh b/bin/test_torbrowser-launcher.sh index 7a935e67..300c2502 100755 --- a/bin/test_torbrowser-launcher.sh +++ b/bin/test_torbrowser-launcher.sh @@ -50,7 +50,7 @@ cleanup_duplicate_screenshots() { fi PIXELS=$(compare -metric AE $i $j /dev/null 2>&1 || true) if [[ "$PIXELS" =~ ^[0-9]+$ ]] && [ $PIXELS -le $MAXDIFF ] ; then - echo "$(date -u ) - removing $j, just $PIXELS difference." + echo "$(date -u ) - removing $j, just $PIXELS pixels difference." rm $j fi done @@ -131,7 +131,8 @@ download_and_launch() { echo "'$(date -u) - starting torbrowser tests'" | tee | xargs schroot --run-session -c $SESSION --preserve-environment -- notify-send update_screenshot echo "$(date -u) - starting torbrowser-launcher the first time, opening settings…" - timeout -k 30m 29m schroot --run-session -c $SESSION --preserve-environment -- torbrowser-launcher --settings | tee $TBL_LOGFILE & + export PYTHONUNBUFFERED=true + ( timeout -k 30m 29m schroot --run-session -c $SESSION --preserve-environment -- /usr/bin/torbrowser-launcher --settings 2>&1 |& tee $TBL_LOGFILE || true ) & sleep 10 update_screenshot echo "$(date -u) - pressing <tab>" @@ -207,8 +208,8 @@ download_and_launch() { xvkbd -text "\r" > /dev/null 2>&1 sleep 3 update_screenshot - for i in $(seq 1 2) ; do - sleep 15 + for i in $(seq 1 4) ; do + sleep 10 update_screenshot done TOR_RUNNING=$(gocr $WORKSPACE/screenshot.png 2>/dev/null | egrep "(Search securely|Tor Is NOT all you need to browse|There are many ways you can help)" || true) |