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

Side by Side Diff: bower_components/web-animations-js/run-tests-android.sh

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 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/bash
2
3 # Update git submodules
4 git submodule init
5 git submodule update
6
7 # Set up the android environment
8 source tools/android/setup.sh
9
10 function run_tests() {
11 ./run-tests.sh \
12 -b Remote \
13 --remote-executor http://localhost:9515 \
14 --remote-caps="chromeOptions=androidPackage=$CHROME_APP" \
15 --load-list load-list.txt \
16 --verbose || exit 1
17 }
18
19 # We split the test runs into two groups to avoid running out of memory in Travi s.
20 echo "^[a].*" > load-list.txt
21 run_tests
22 echo "^[^a].*" > load-list.txt
23 run_tests
24
25 echo "Run $ANDROID_DIR/stop.sh if finished."
OLDNEW
« no previous file with comments | « bower_components/web-animations-js/run-tests.sh ('k') | bower_components/web-animations-js/test/bootstrap.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698