OLD | NEW |
---|---|
(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 | |
OLD | NEW |