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

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

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

Powered by Google App Engine
This is Rietveld 408576698