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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/ci_stability.sh

Issue 2468053002: Import wpt@9fcccf38b6be00f71ffa6bd6e29c5aa1ef25ee8c (Closed)
Patch Set: Skip cssom and svg/shapes, remove unwanted baseline Created 4 years, 1 month 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
1 set -e 1 set -e
2 2
3 hosts_fixup() { 3 hosts_fixup() {
4 echo "travis_fold:start:hosts_fixup" 4 echo "travis_fold:start:hosts_fixup"
5 echo "== /etc/hosts ==" 5 echo "Rewriting hosts file"
6 echo "## /etc/hosts ##"
6 cat /etc/hosts 7 cat /etc/hosts
7 echo "----------------"
8 sudo sed -i 's/^::1\s*localhost/::1/' /etc/hosts 8 sudo sed -i 's/^::1\s*localhost/::1/' /etc/hosts
9 sudo sh -c 'echo " 9 sudo sh -c 'echo "
10 127.0.0.1 web-platform.test 10 127.0.0.1 web-platform.test
11 127.0.0.1 www.web-platform.test 11 127.0.0.1 www.web-platform.test
12 127.0.0.1 www1.web-platform.test 12 127.0.0.1 www1.web-platform.test
13 127.0.0.1 www2.web-platform.test 13 127.0.0.1 www2.web-platform.test
14 127.0.0.1 xn--n8j6ds53lwwkrqhv28a.web-platform.test 14 127.0.0.1 xn--n8j6ds53lwwkrqhv28a.web-platform.test
15 127.0.0.1 xn--lve-6lad.web-platform.test 15 127.0.0.1 xn--lve-6lad.web-platform.test
16 " >> /etc/hosts' 16 " >> /etc/hosts'
17 echo "== /etc/hosts ==" 17 echo "== /etc/hosts =="
18 cat /etc/hosts 18 cat /etc/hosts
19 echo "----------------" 19 echo "----------------"
20 echo "travis_fold:end:hosts_fixup" 20 echo "travis_fold:end:hosts_fixup"
21 } 21 }
22 22
23 23
24 test_stability() { 24 test_stability() {
25 python check_stability.py $PRODUCT 25 python check_stability.py $PRODUCT
26 } 26 }
27 27
28 main() { 28 main() {
29 hosts_fixup 29 hosts_fixup
30 test_stability 30 test_stability
31 } 31 }
32 32
33 main 33 main
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698