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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/dom/promise-rejection-events-expected.txt

Issue 2766823003: Fix testharness result parsing, make "Harness error" count as failure. (Closed)
Patch Set: One more test with nondeterministic message order Created 3 years, 9 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 CONSOLE ERROR: line 15: Uncaught (in promise) Error
2 CONSOLE ERROR: line 24: Uncaught (in promise) Error
3 CONSOLE ERROR: line 541: Uncaught (in promise) Error
4 CONSOLE ERROR: line 560: Uncaught (in promise) Error
5 CONSOLE ERROR: line 577: Uncaught (in promise) Error
6 CONSOLE ERROR: line 600: Uncaught (in promise) Error
7 CONSOLE ERROR: line 625: Uncaught (in promise) Error
8 CONSOLE ERROR: line 667: Uncaught (in promise) Error
9 CONSOLE ERROR: line 2717: Uncaught TypeError: Cannot read property 'error' of un defined
10 CONSOLE ERROR: line 700: Uncaught (in promise) undefined
11 CONSOLE ERROR: line 2717: Uncaught TypeError: Cannot read property 'error' of un defined
12 CONSOLE ERROR: line 767: Uncaught (in promise) undefined
13 CONSOLE ERROR: line 62: Uncaught (in promise) Error
14 CONSOLE ERROR: line 120: Uncaught (in promise) Error
15 CONSOLE ERROR: line 131: Uncaught (in promise) Error
16 CONSOLE ERROR: line 157: Uncaught (in promise) Error
17 CONSOLE ERROR: line 35: Uncaught (in promise) Error
18 CONSOLE ERROR: line 2717: Uncaught TypeError: Cannot read property 'error' of un defined
19 CONSOLE ERROR: line 703: Uncaught (in promise) undefined
20 CONSOLE ERROR: line 2717: Uncaught TypeError: Cannot read property 'error' of un defined
21 CONSOLE ERROR: line 735: Uncaught (in promise) undefined
22 CONSOLE ERROR: line 48: Uncaught (in promise) Error
23 CONSOLE ERROR: line 78: Uncaught (in promise) Error
24 CONSOLE ERROR: line 98: Uncaught (in promise) Error
25 CONSOLE ERROR: line 142: Uncaught (in promise) Error
26 CONSOLE ERROR: line 15: Uncaught (in promise) Error
27 CONSOLE ERROR: line 24: Uncaught (in promise) Error
28 CONSOLE ERROR: line 541: Uncaught (in promise) Error
29 CONSOLE ERROR: line 560: Uncaught (in promise) Error
30 CONSOLE ERROR: line 577: Uncaught (in promise) Error
31 CONSOLE ERROR: line 600: Uncaught (in promise) Error
32 CONSOLE ERROR: line 625: Uncaught (in promise) Error
33 CONSOLE ERROR: line 667: Uncaught (in promise) Error
34 CONSOLE ERROR: line 62: Uncaught (in promise) Error
35 CONSOLE ERROR: line 120: Uncaught (in promise) Error
36 CONSOLE ERROR: line 131: Uncaught (in promise) Error
37 CONSOLE ERROR: line 157: Uncaught (in promise) Error
38 CONSOLE ERROR: line 35: Uncaught (in promise) Error
39 CONSOLE ERROR: line 48: Uncaught (in promise) Error
40 CONSOLE ERROR: line 78: Uncaught (in promise) Error
41 CONSOLE ERROR: line 98: Uncaught (in promise) Error
42 CONSOLE ERROR: line 142: Uncaught (in promise) Error
43 This is a testharness.js-based test.
44 Harness Error. harness_status.status = 1 , harness_status.message =
45 PASS unhandledrejection: from Promise.reject
46 PASS unhandledrejection: from a synchronous rejection in new Promise
47 PASS unhandledrejection: from a task-delayed rejection
48 PASS unhandledrejection: from a setTimeout-delayed rejection
49 PASS unhandledrejection: from a throw in a rejection handler chained off of Prom ise.reject
50 PASS unhandledrejection: from a throw in a rejection handler chained off of a se tTimeout-delayed rejection
51 PASS unhandledrejection: from a throw in a rejection handler attached one microt ask after a setTimeout-delayed rejection
52 PASS unhandledrejection: from returning a Promise.reject-created rejection in a fulfillment handler
53 PASS unhandledrejection: from a throw in a fulfillment handler
54 PASS unhandledrejection: from returning a setTimeout-delayed rejection in a fulf illment handler
55 PASS unhandledrejection: from Promise.reject, indirected through Promise.all
56 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject
57 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject, indirecting through Promise.all
58 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a synchronously-rejected promise created with new Promise
59 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from throwing in a fulfillment handler
60 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a Promise.reject-created promise in a fulfillment handler
61 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a setTimeout-delayed rejection in a fu lfillment handler
62 PASS no unhandledrejection/rejectionhandled: all inside a queued task, a rejecti on handler attached synchronously to a promise created from returning a Promise. reject-created promise in a fulfillment handler
63 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (Promise.reject-created promise)
64 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (immediately-rejected new Promise-created promise)
65 PASS delayed handling: a microtask delay before attaching the handler, and befor e rejecting the promise, indirected through Promise.all
66 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks
67 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a postMessageTask
68 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a setTimeout
69 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask
70 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a postMessageTask
71 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a setTimeout
72 PASS delayed handling: a task delay before attaching a handler prevents unhandle drejection
73 PASS delayed handling: postMessageTask after promise creation/rejection, plus pr omise microtasks, is not too late to attach a rejection handler
74 PASS delayed handling: postMessageTask before promise creation/rejection, plus m any promise microtasks, is not too late to attach a rejection handler
75 PASS delayed handling: postMessageTask after promise creation/rejection, plus ma ny promise microtasks, is not too late to attach a rejection handler
76 PASS delayed handling: a nested-task delay before attaching a handler causes unh andledrejection
77 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus promise microtasks, is too late to attach a rejection handler
78 PASS delayed handling: a nested-postMessageTask before promise creation/rejectio n, plus many promise microtasks, is too late to attach a rejection handler
79 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus many promise microtasks, is too late to attach a rejection handler
80 PASS delayed handling: delaying handling by setTimeout(,10) will cause both even ts to fire
81 PASS mutationObserverMicrotask vs. postMessageTask ordering is not disturbed ins ide unhandledrejection events
82 PASS postMessageTask ordering vs. the task queued for unhandled rejection notifi cation (1)
83 PASS postMessageTask ordering vs. the task queued for unhandled rejection notifi cation (2)
84 PASS rejectionhandled is dispatched from a queued task, and not immediately
85 PASS Untitled
86 PASS unhandledrejection: from Promise.reject
87 PASS unhandledrejection: from a synchronous rejection in new Promise
88 PASS unhandledrejection: from a task-delayed rejection
89 PASS unhandledrejection: from a setTimeout-delayed rejection
90 PASS unhandledrejection: from a throw in a rejection handler chained off of Prom ise.reject
91 PASS unhandledrejection: from a throw in a rejection handler chained off of a se tTimeout-delayed rejection
92 PASS unhandledrejection: from a throw in a rejection handler attached one microt ask after a setTimeout-delayed rejection
93 PASS unhandledrejection: from returning a Promise.reject-created rejection in a fulfillment handler
94 PASS unhandledrejection: from a throw in a fulfillment handler
95 PASS unhandledrejection: from returning a setTimeout-delayed rejection in a fulf illment handler
96 PASS unhandledrejection: from Promise.reject, indirected through Promise.all
97 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject
98 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject, indirecting through Promise.all
99 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a synchronously-rejected promise created with new Promise
100 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from throwing in a fulfillment handler
101 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a Promise.reject-created promise in a fulfillment handler
102 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a setTimeout-delayed rejection in a fu lfillment handler
103 PASS no unhandledrejection/rejectionhandled: all inside a queued task, a rejecti on handler attached synchronously to a promise created from returning a Promise. reject-created promise in a fulfillment handler
104 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (Promise.reject-created promise)
105 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (immediately-rejected new Promise-created promise)
106 PASS delayed handling: a microtask delay before attaching the handler, and befor e rejecting the promise, indirected through Promise.all
107 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks
108 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a postMessageTask
109 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a setTimeout
110 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask
111 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a postMessageTask
112 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a setTimeout
113 PASS delayed handling: a nested-task delay before attaching a handler causes unh andledrejection
114 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus promise microtasks, is too late to attach a rejection handler
115 PASS delayed handling: a nested-postMessageTask before promise creation/rejectio n, plus many promise microtasks, is too late to attach a rejection handler
116 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus many promise microtasks, is too late to attach a rejection handler
117 PASS delayed handling: delaying handling by setTimeout(,10) will cause both even ts to fire
118 PASS mutationObserverMicrotask vs. postMessageTask ordering is not disturbed ins ide unhandledrejection events
119 PASS unhandledrejection: from Promise.reject
120 PASS unhandledrejection: from a synchronous rejection in new Promise
121 PASS unhandledrejection: from a task-delayed rejection
122 PASS unhandledrejection: from a setTimeout-delayed rejection
123 PASS unhandledrejection: from a throw in a rejection handler chained off of Prom ise.reject
124 PASS unhandledrejection: from a throw in a rejection handler chained off of a se tTimeout-delayed rejection
125 PASS unhandledrejection: from a throw in a rejection handler attached one microt ask after a setTimeout-delayed rejection
126 PASS unhandledrejection: from returning a Promise.reject-created rejection in a fulfillment handler
127 PASS unhandledrejection: from a throw in a fulfillment handler
128 PASS unhandledrejection: from returning a setTimeout-delayed rejection in a fulf illment handler
129 PASS unhandledrejection: from Promise.reject, indirected through Promise.all
130 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject
131 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject, indirecting through Promise.all
132 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a synchronously-rejected promise created with new Promise
133 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from throwing in a fulfillment handler
134 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a Promise.reject-created promise in a fulfillment handler
135 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a setTimeout-delayed rejection in a fu lfillment handler
136 PASS no unhandledrejection/rejectionhandled: all inside a queued task, a rejecti on handler attached synchronously to a promise created from returning a Promise. reject-created promise in a fulfillment handler
137 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (Promise.reject-created promise)
138 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (immediately-rejected new Promise-created promise)
139 PASS delayed handling: a microtask delay before attaching the handler, and befor e rejecting the promise, indirected through Promise.all
140 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks
141 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a postMessageTask
142 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a setTimeout
143 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask
144 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a postMessageTask
145 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a setTimeout
146 PASS delayed handling: a nested-task delay before attaching a handler causes unh andledrejection
147 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus promise microtasks, is too late to attach a rejection handler
148 PASS delayed handling: a nested-postMessageTask before promise creation/rejectio n, plus many promise microtasks, is too late to attach a rejection handler
149 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus many promise microtasks, is too late to attach a rejection handler
150 PASS delayed handling: delaying handling by setTimeout(,10) will cause both even ts to fire
151 PASS mutationObserverMicrotask vs. postMessageTask ordering is not disturbed ins ide unhandledrejection events
152 PASS unhandledrejection: from Promise.reject
153 PASS unhandledrejection: from a synchronous rejection in new Promise
154 PASS unhandledrejection: from a task-delayed rejection
155 PASS unhandledrejection: from a setTimeout-delayed rejection
156 PASS unhandledrejection: from a throw in a rejection handler chained off of Prom ise.reject
157 PASS unhandledrejection: from a throw in a rejection handler chained off of a se tTimeout-delayed rejection
158 PASS unhandledrejection: from a throw in a rejection handler attached one microt ask after a setTimeout-delayed rejection
159 PASS unhandledrejection: from returning a Promise.reject-created rejection in a fulfillment handler
160 PASS unhandledrejection: from a throw in a fulfillment handler
161 PASS unhandledrejection: from returning a setTimeout-delayed rejection in a fulf illment handler
162 PASS unhandledrejection: from Promise.reject, indirected through Promise.all
163 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject
164 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise from Promise.reject, indirecting through Promise.all
165 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a synchronously-rejected promise created with new Promise
166 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from throwing in a fulfillment handler
167 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a Promise.reject-created promise in a fulfillment handler
168 PASS no unhandledrejection/rejectionhandled: rejection handler attached synchron ously to a promise created from returning a setTimeout-delayed rejection in a fu lfillment handler
169 PASS no unhandledrejection/rejectionhandled: all inside a queued task, a rejecti on handler attached synchronously to a promise created from returning a Promise. reject-created promise in a fulfillment handler
170 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (Promise.reject-created promise)
171 PASS delayed handling: a microtask delay before attaching a handler prevents bot h events (immediately-rejected new Promise-created promise)
172 PASS delayed handling: a microtask delay before attaching the handler, and befor e rejecting the promise, indirected through Promise.all
173 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks
174 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a postMessageTask
175 PASS microtask nesting: attaching a handler inside a combination of mutationObse rverMicrotask + promise microtasks, all inside a setTimeout
176 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask
177 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a postMessageTask
178 PASS microtask nesting: attaching a handler inside a combination of promise micr otasks + mutationObserverMicrotask, all inside a setTimeout
179 PASS delayed handling: a nested-task delay before attaching a handler causes unh andledrejection
180 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus promise microtasks, is too late to attach a rejection handler
181 PASS delayed handling: a nested-postMessageTask before promise creation/rejectio n, plus many promise microtasks, is too late to attach a rejection handler
182 PASS delayed handling: a nested-postMessageTask after promise creation/rejection , plus many promise microtasks, is too late to attach a rejection handler
183 PASS delayed handling: delaying handling by setTimeout(,10) will cause both even ts to fire
184 PASS mutationObserverMicrotask vs. postMessageTask ordering is not disturbed ins ide unhandledrejection events
185 Harness: the test ran to completion.
186
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698