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

Unified 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698