Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: test_safari.sh

Issue 1871883002: Make Safari tests more robust. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/bin/sh
2
3 ./nuke_safari.sh
4
5 if lsof -t /Applications/Safari.app/Contents/MacOS/Safari ; then
ahe 2016/04/08 12:56:53 Not sure how to integrate this test and the next i
6 echo Safari still running >&2
7 exit 1
8 fi
9
10 if pkill -HUP com.apple.Safari ; then
11 echo Safari helpers still running >&2
12 exit 1
13 fi
14
15 set -x
16
17 exec ./tools/test.py '--mode=release' '--arch=ia32' '--compiler=dart2js' --dart2 js-batch '--runtime=safari' --clear_browser_cache --report --time --failure-summ ary -v -t60
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698