summaryrefslogtreecommitdiffstats
path: root/third_party/polymer/components/web-animations-js/run-tests-android.sh
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/polymer/components/web-animations-js/run-tests-android.sh')
-rwxr-xr-xthird_party/polymer/components/web-animations-js/run-tests-android.sh25
1 files changed, 0 insertions, 25 deletions
diff --git a/third_party/polymer/components/web-animations-js/run-tests-android.sh b/third_party/polymer/components/web-animations-js/run-tests-android.sh
deleted file mode 100755
index e7aacea..0000000
--- a/third_party/polymer/components/web-animations-js/run-tests-android.sh
+++ /dev/null
@@ -1,25 +0,0 @@
-#! /bin/bash
-
-# Update git submodules
-git submodule init
-git submodule update
-
-# Set up the android environment
-source tools/android/setup.sh
-
-function run_tests() {
- ./run-tests.sh \
- -b Remote \
- --remote-executor http://localhost:9515 \
- --remote-caps="chromeOptions=androidPackage=$CHROME_APP" \
- --load-list load-list.txt \
- --verbose || exit 1
-}
-
-# We split the test runs into two groups to avoid running out of memory in Travis.
-echo "^[a].*" > load-list.txt
-run_tests
-echo "^[^a].*" > load-list.txt
-run_tests
-
-echo "Run $ANDROID_DIR/stop.sh if finished."