Index: test_safari.sh |
diff --git a/test_safari.sh b/test_safari.sh |
new file mode 100755 |
index 0000000000000000000000000000000000000000..b63ed7073f80c2fb98a13221b6d34d6637683196 |
--- /dev/null |
+++ b/test_safari.sh |
@@ -0,0 +1,17 @@ |
+#!/bin/sh |
+ |
+./nuke_safari.sh |
+ |
+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
|
+ echo Safari still running >&2 |
+ exit 1 |
+fi |
+ |
+if pkill -HUP com.apple.Safari ; then |
+ echo Safari helpers still running >&2 |
+ exit 1 |
+fi |
+ |
+set -x |
+ |
+exec ./tools/test.py '--mode=release' '--arch=ia32' '--compiler=dart2js' --dart2js-batch '--runtime=safari' --clear_browser_cache --report --time --failure-summary -v -t60 |