Home | History | Annotate | Download | only in mozilla

Lines Matching full:failed

10 1127 test(s) selected, 1119 test(s) completed, 51 failures reported (4.55% failed)<br>
19 <dl><a name='failure1'></a><dd><b>Testcase <a target='other_window' href='./ecma/TypeConversion/9.3.1-3.js'>ecma/TypeConversion/9.3.1-3.js</a> failed</b> <br>
23 - "-0x123456789abcde8" = NaN FAILED! expected: 81985529216486880<br>
24 - "-0x123456789abcde8" = NaN FAILED! expected: 81985529216486880<br>
26 <a name='failure2'></a><dd><b>Testcase <a target='other_window' href='./ecma_2/Exceptions/function-001.js'>ecma_2/Exceptions/function-001.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=10278' target='other_window'>Bug Number 10278</a><br>
30 eval("function f(){}function g(){}") (threw no exception thrown = fail FAILED! expected: pass<br>
32 <a name='failure3'></a><dd><b>Testcase <a target='other_window' href='./ecma_2/RegExp/regress-001.js'>ecma_2/RegExp/regress-001.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=http://bugzilla.mozilla.org/show_bug.cgi?id=2157' target='other_window'>Bug Number http://bugzilla.mozilla.org/show_bug.cgi?id=2157</a><br>
40 <a name='failure4'></a><dd><b>Testcase <a target='other_window' href='./ecma_3/FunExpr/fe-001.js'>ecma_3/FunExpr/fe-001.js</a> failed</b> <br>
44 FAILED!: [reported from test()] Both functions were defined.<br>
45 FAILED!: [reported from test()] Expected value '1', Actual value '0'<br>
46 FAILED!: [reported from test()] <br>
48 <a name='failure5'></a><dd><b>Testcase <a target='other_window' href='./ecma_3/Statements/regress-194364.js'>ecma_3/Statements/regress-194364.js</a> failed</b> <br>
54 <a name='failure6'></a><dd><b>Testcase <a target='other_window' href='./ecma_3/Unicode/uc-001.js'>ecma_3/Unicode/uc-001.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=23610' target='other_window'>Bug Number 23610</a><br>
58 FAILED!: [reported from test()] Unicode format-control character test (Category Cf.)<br>
59 FAILED!: [reported from test()] Expected value 'no error', Actual value 'no? error'<br>
60 FAILED!: [reported from test()] <br>
62 <a name='failure7'></a><dd><b>Testcase <a target='other_window' href='./js1_2/Objects/toString-001.js'>js1_2/Objects/toString-001.js</a> failed</b> <br>
69 <a name='failure8'></a><dd><b>Testcase <a target='other_window' href='./js1_2/function/Function_object.js'>js1_2/function/Function_object.js</a> failed</b> <br>
73 f.arity = undefined FAILED! expected: 3<br>
74 } FAILED! expected: <br>
76 <a name='failure9'></a><dd><b>Testcase <a target='other_window' href='./js1_2/function/function-001-n.js'>js1_2/function/function-001-n.js</a> failed</b> <br>
82 eval("function f(){}function g(){}") = undefined FAILED! expected: error<br>
84 <a name='failure10'></a><dd><b>Testcase <a target='other_window' href='./js1_2/function/regexparg-1.js'>js1_2/function/regexparg-1.js</a> failed</b> <br>
91 <a name='failure11'></a><dd><b>Testcase <a target='other_window' href='./js1_2/function/tostring-1.js'>js1_2/function/tostring-1.js</a> failed</b> <br>
95 } FAILED! expected: <br>
96 } FAILED! expected: <br>
97 } FAILED! expected: <br>
98 } FAILED! expected: <br>
99 } FAILED! expected: <br>
101 <a name='failure12'></a><dd><b>Testcase <a target='other_window' href='./js1_2/function/tostring-2.js'>js1_2/function/tostring-2.js</a> failed</b> <br>
105 } FAILED! expected: <br>
106 } FAILED! expected: <br>
107 } FAILED! expected: <br>
108 } FAILED! expected: <br>
109 } FAILED! expected: <br>
110 } FAILED! expected: <br>
111 } FAILED! expected: <br>
112 } FAILED! expected: <br>
113 } FAILED! expected: <br>
115 <a name='failure13'></a><dd><b>Testcase <a target='other_window' href='./js1_2/operator/equality.js'>js1_2/operator/equality.js</a> failed</b> <br>
119 (new String('x') == 'x') = true FAILED! expected: false<br>
120 ('x' == new String('x')) = true FAILED! expected: false<br>
122 <a name='failure14'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/RegExp_lastIndex.js'>js1_2/regexp/RegExp_lastIndex.js</a> failed</b> <br>
126 re=/x./g; re.lastIndex=4; re.exec('xyabcdxa') = xa FAILED! expected: ["xa"]<br>
127 re.exec('xyabcdef') = xy FAILED! expected: ["xy"]<br>
129 <a name='failure15'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/RegExp_multiline.js'>js1_2/regexp/RegExp_multiline.js</a> failed</b> <br>
133 (multiline == true) '123\n456'.match(/^4../) = null FAILED! expected: 456<br>
134 (multiline == true) 'a11\na22\na23\na24'.match(/^a../g) = a11 FAILED! expected: a11,a22,a23,a24<br>
135 (multiline == true) '123\n456'.match(/.3$/) = null FAILED! expected: 23<br>
136 (multiline == true) 'a11\na22\na23\na24'.match(/a..$/g) = a24 FAILED! expected: a11,a22,a23,a24<br>
137 (multiline == true) 'a11\na22\na23\na24'.match(new RegExp('a..$','g')) = a24 FAILED! expected: a11,a22,a23,a24<br>
139 <a name='failure16'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/RegExp_multiline_as_array.js'>js1_2/regexp/RegExp_multiline_as_array.js</a> failed</b> <br>
143 (['$*'] == true) '123\n456'.match(/^4../) = null FAILED! expected: 456<br>
144 (['$*'] == true) 'a11\na22\na23\na24'.match(/^a../g) = a11 FAILED! expected: a11,a22,a23,a24<br>
145 (['$*'] == true) '123\n456'.match(/.3$/) = null FAILED! expected: 23<br>
146 (['$*'] == true) 'a11\na22\na23\na24'.match(/a..$/g) = a24 FAILED! expected: a11,a22,a23,a24<br>
147 (['$*'] == true) 'a11\na22\na23\na24'.match(new RegExp('a..$','g')) = a24 FAILED! expected: a11,a22,a23,a24<br>
149 <a name='failure17'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/beginLine.js'>js1_2/regexp/beginLine.js</a> failed</b> <br>
153 123xyz'.match(new RegExp('^\d+')) = null FAILED! expected: 123<br>
155 <a name='failure18'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/endLine.js'>js1_2/regexp/endLine.js</a> failed</b> <br>
159 xyz'.match(new RegExp('\d+$')) = null FAILED! expected: 890<br>
161 <a name='failure19'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/regress-6359.js'>js1_2/regexp/regress-6359.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=http://bugzilla.mozilla.org/show_bug.cgi?id=6359' target='other_window'>Bug Number http://bugzilla.mozilla.org/show_bug.cgi?id=6359</a><br>
168 <a name='failure20'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/regress-9141.js'>js1_2/regexp/regress-9141.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=http://bugzilla.mozilla.org/show_bug.cgi?id=9141' target='other_window'>Bug Number http://bugzilla.mozilla.org/show_bug.cgi?id=9141</a><br>
175 <a name='failure21'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/simple_form.js'>js1_2/regexp/simple_form.js</a> failed</b> <br>
183 <a name='failure22'></a><dd><b>Testcase <a target='other_window' href='./js1_2/regexp/string_split.js'>js1_2/regexp/string_split.js</a> failed</b> <br>
187 'abc'.split(/[a-z]/) = ,,, FAILED! expected: ,,<br>
188 'abc'.split(/[a-z]/) = ,,, FAILED! expected: ,,<br>
189 'abc'.split(new RegExp('[a-z]')) = ,,, FAILED! expected: ,,<br>
190 'abc'.split(new RegExp('[a-z]')) = ,,, FAILED! expected: ,,<br>
192 <a name='failure23'></a><dd><b>Testcase <a target='other_window' href='./js1_2/version120/boolean-001.js'>js1_2/version120/boolean-001.js</a> failed</b> <br>
196 new Boolean(false) = true FAILED! expected: false<br>
198 <a name='failure24'></a><dd><b>Testcase <a target='other_window' href='./js1_2/version120/regress-99663.js'>js1_2/version120/regress-99663.js</a> failed</b> <br>
202 Section 1 of test - got Error: Can't find variable: it FAILED! expected: a "read-only" error<br>
203 Section 2 of test - got Error: Can't find variable: it FAILED! expected: a "read-only" error<br>
204 Section 3 of test - got Error: Can't find variable: it FAILED! expected: a "read-only" error<br>
206 <a name='failure25'></a><dd><b>Testcase <a target='other_window' href='./js1_3/Script/function-001-n.js'>js1_3/Script/function-001-n.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=10278' target='other_window'>Bug Number 10278</a><br>
213 eval("function f(){}function g(){}") = undefined FAILED! expected: error<br>
215 <a name='failure26'></a><dd><b>Testcase <a target='other_window' href='./js1_3/Script/script-001.js'>js1_3/Script/script-001.js</a> failed</b> <br>
222 <a name='failure27'></a><dd><b>Testcase <a target='other_window' href='./js1_3/regress/function-001-n.js'>js1_3/regress/function-001-n.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=10278' target='other_window'>Bug Number 10278</a><br>
229 eval("function f(){}function g(){}") = undefined FAILED! expected: error<br>
231 <a name='failure28'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Exceptions/catchguard-001.js'>js1_5/Exceptions/catchguard-001.js</a> failed</b> <br>
237 failed</b> <br>
243 <a name='failure30'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Exceptions/catchguard-003.js'>js1_5/Exceptions/catchguard-003.js</a> failed</b> <br>
249 <a name='failure31'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Exceptions/errstack-001.js'>js1_5/Exceptions/errstack-001.js</a> failed</b> <br>
255 <a name='failure32'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Exceptions/regress-50447.js'>js1_5/Exceptions/regress-50447.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=50447' target='other_window'>Bug Number 50447</a><br>
263 <a name='failure33'></a><dd><b>Testcase <a target='other_window' href='./js1_5/GetSet/getset-001.js'>js1_5/GetSet/getset-001.js</a> failed</b> <br>
269 <a name='failure34'></a><dd><b>Testcase <a target='other_window' href='./js1_5/GetSet/getset-002.js'>js1_5/GetSet/getset-002.js</a> failed</b> <br>
275 <a name='failure35'></a><dd><b>Testcase <a target='other_window' href='./js1_5/GetSet/getset-003.js'>js1_5/GetSet/getset-003.js</a> failed</b> <br>
281 <a name='failure36'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Object/regress-90596-001.js'>js1_5/Object/regress-90596-001.js</a> failed</b> <br>
287 <a name='failure37'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Object/regress-90596-002.js'>js1_5/Object/regress-90596-002.js</a> failed</b> <br>
293 <a name='failure38'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Object/regress-96284-001.js'>js1_5/Object/regress-96284-001.js</a> failed</b> <br>
299 <a name='failure39'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Object/regress-96284-002.js'>js1_5/Object/regress-96284-002.js</a> failed</b> <br>
305 <a name='failure40'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Regress/regress-44009.js'>js1_5/Regress/regress-44009.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=44009' target='other_window'>Bug Number 44009</a><br>
313 <a name='failure41'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Regress/regress-103602.js'>js1_5/Regress/regress-103602.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=103602' target='other_window'>Bug Number 103602</a><br>
317 FAILED!: [reported from test()] Section 1 of test -<br>
318 FAILED!: [reported from test()] Expected value '', Actual value 'Redeclaration of a const FAILED to cause an error'<br>
319 FAILED!: [reported from test()] <br>
320 FAILED!: [reported from test()] Section 3 of test -<br>
321 FAILED!: [reported from test()] Expected value '1', Actual value '2'<br>
322 FAILED!: [reported from test()] <br>
324 <a name='failure42'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Regress/regress-104077.js'>js1_5/Regress/regress-104077.js</a> failed</b> <br>
330 <a name='failure43'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Regress/regress-127557.js'>js1_5/Regress/regress-127557.js</a> failed</b> <br>
336 <a name='failure44'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Regress/regress-172699.js'>js1_5/Regress/regress-172699.js</a> failed</b> <br>
342 <a name='failure45'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Regress/regress-179524.js'>js1_5/Regress/regress-179524.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=179524' target='other_window'>Bug Number 179524</a><br>
346 FAILED!: [reported from test()] Section 14 of test -<br>
347 FAILED!: [reported from test()] Expected value 'A', Actual value 'a'<br>
348 FAILED!: [reported from test()] <br>
349 FAILED!: [reported from test()] Section 15 of test -<br>
350 FAILED!: [reported from test()] Expected value 'A,a', Actual value 'a'<br>
351 FAILED!: [reported from test()] <br>
352 FAILED!: [reported from test()] Section 17 of test -<br>
353 FAILED!: [reported from test()] Expected value 'A', Actual value 'a'<br>
354 FAILED!: [reported from test()] <br>
355 FAILED!: [reported from test()] Section 18 of test -<br>
356 FAILED!: [reported from test()] Expected value 'A,a', Actual value 'a'<br>
357 FAILED!: [reported from test()] <br>
358 FAILED!: [reported from test()] Section 20 of test -<br>
359 FAILED!: [reported from test()] Expected value 'SHOULD HAVE FALLEN INTO CATCH-BLOCK!', Actual value 'a'<br>
360 FAILED!: [reported from test()] <br>
361 FAILED!: [reported from test()] Section 22 of test -<br>
362 FAILED!: [reported from test()] Expected value '0', Actual value '4'<br>
363 FAILED!: [reported from test()] <br>
364 FAILED!: [reported from test()] Section 23 of test -<br>
365 FAILED!: [reported from test()] Expected value '0', Actual value '4'<br>
366 FAILED!: [reported from test()] <br>
367 FAILED!: [reported from test()] Section 25 of test -<br>
368 FAILED!: [reported from test()] Expected value '0', Actual value '4'<br>
369 FAILED!: [reported from test()] <br>
370 FAILED!: [reported from test()] Section 26 of test -<br>
371 FAILED!: [reported from test()] Expected value '0', Actual value '4'<br>
372 FAILED!: [reported from test()] <br>
373 FAILED!: [reported from test()] Section 28 of test -<br>
374 FAILED!: [reported from test()] Type mismatch, expected type string, actual type number<br>
375 FAILED!: [reported from test()] Expected value 'SHOULD HAVE FALLEN INTO CATCH-BLOCK!', Actual value '4'<br>
376 FAILED!: [reported from test()] <br>
377 FAILED!: [reported from test()] Section 30 of test -<br>
378 FAILED!: [reported from test()] Expected value 'ZBC abc', Actual value 'ABC Zbc'<br>
379 FAILED!: [reported from test()] <br>
380 FAILED!: [reported from test()] Section 31 of test -<br>
381 FAILED!: [reported from test()] Expected value 'ZBC Zbc', Actual value 'ABC Zbc'<br>
382 FAILED!: [reported from test()] <br>
383 FAILED!: [reported from test()] Section 33 of test -<br>
384 FAILED!: [reported from test()] Expected value 'ZBC abc', Actual value 'ABC Zbc'<br>
385 FAILED!: [reported from test()] <br>
386 FAILED!: [reported from test()] Section 34 of test -<br>
387 FAILED!: [reported from test()] Expected value 'ZBC Zbc', Actual value 'ABC Zbc'<br>
388 FAILED!: [reported from test()] <br>
389 FAILED!: [reported from test()] Section 36 of test -<br>
390 FAILED!: [reported from test()] Expected value 'SHOULD HAVE FALLEN INTO CATCH-BLOCK!', Actual value 'ABC Zbc'<br>
391 FAILED!: [reported from test()] <br>
393 <a name='failure46'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Scope/regress-220584.js'>js1_5/Scope/regress-220584.js</a> failed</b> <br>
399 <a name='failure47'></a><dd><b>Testcase <a target='other_window' href='./js1_5/Scope/scope-001.js'>js1_5/Scope/scope-001.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=53268' target='other_window'>Bug Number 53268</a><br>
403 FAILED!: [reported from test()] Step 1: setting obj.__proto__ = global object<br>
404 FAILED!: [reported from test()] Expected value '5', Actual value '1'<br>
405 FAILED!: [reported from test()] <br>
406 FAILED!: [reported from test()] Step 2: setting obj.__proto__ = null<br>
407 FAILED!: [reported from test()] Type mismatch, expected type undefined, actual type number<br>
408 FAILED!: [reported from test()] Expected value 'undefined', Actual value '1'<br>
409 FAILED!: [reported from test()] <br>
411 <a name='failure48'></a><dd><b>Testcase <a target='other_window' href='./js1_6/Regress/regress-301574.js'>js1_6/Regress/regress-301574.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=301574' target='other_window'>Bug Number 301574</a><br>
415 FAILED!: E4X should be enabled even when e4x=1 not specified: XML()<br>
416 FAILED!: Expected value 'No error', Actual value 'error: ReferenceError: Can't find variable: XML'<br>
417 FAILED!: <br>
418 FAILED!: E4X should be enabled even when e4x=1 not specified: XMLList()<br>
419 FAILED!: Expected value 'No error', Actual value 'error: ReferenceError: Can't find variable: XML'<br>
420 FAILED!: <br>
422 <a name='failure49'></a><dd><b>Testcase <a target='other_window' href='./js1_6/Regress/regress-309242.js'>js1_6/Regress/regress-309242.js</a> failed</b> <br>
428 <a name='failure50'></a><dd><b>Testcase <a target='other_window' href='./js1_6/Regress/regress-314887.js'>js1_6/Regress/regress-314887.js</a> failed</b> <br>
434 <a name='failure51'></a><dd><b>Testcase <a target='other_window' href='./js1_6/String/regress-306591.js'>js1_6/String/regress-306591.js</a> failed</b> <a href='http://bugzilla.mozilla.org/show_bug.cgi?id=306591' target='other_window'>Bug Number 306591</a><br>