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

Side by Side Diff: test/test262/test262.status

Issue 8341111: Mark Test262 test cases for known issue 1772. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 15.2.3.7-6-a-169: FAIL 114 15.2.3.7-6-a-169: FAIL
115 15.2.3.7-6-a-170: FAIL 115 15.2.3.7-6-a-170: FAIL
116 15.2.3.7-6-a-171: FAIL 116 15.2.3.7-6-a-171: FAIL
117 15.2.3.7-6-a-172: FAIL 117 15.2.3.7-6-a-172: FAIL
118 15.2.3.7-6-a-173: FAIL 118 15.2.3.7-6-a-173: FAIL
119 15.2.3.7-6-a-174: FAIL 119 15.2.3.7-6-a-174: FAIL
120 15.2.3.7-6-a-175: FAIL 120 15.2.3.7-6-a-175: FAIL
121 15.2.3.7-6-a-176: FAIL 121 15.2.3.7-6-a-176: FAIL
122 15.2.3.7-6-a-177: FAIL 122 15.2.3.7-6-a-177: FAIL
123 123
124 # V8 Bug: http://code.google.com/p/v8/issues/detail?id=1772
125 15.2.3.6-4-292-1: FAIL
126 15.2.3.6-4-293-2: FAIL
127 15.2.3.6-4-293-3: FAIL
128 15.2.3.6-4-294-1: FAIL
129 15.2.3.6-4-295-1: FAIL
130 15.2.3.6-4-296-1: FAIL
131 15.2.3.6-4-333-11: FAIL
132 15.2.3.7-6-a-281: FAIL
133 15.2.3.7-6-a-282: FAIL
134 15.2.3.7-6-a-283: FAIL
135 15.2.3.7-6-a-284: FAIL
136 15.2.3.7-6-a-285: FAIL
137
124 # V8 Bug: http://code.google.com/p/v8/issues/detail?id=1790 138 # V8 Bug: http://code.google.com/p/v8/issues/detail?id=1790
125 15.4.4.22-9-9: FAIL 139 15.4.4.22-9-9: FAIL
126 140
127 # Invalid test cases (recent change adding var changes semantics) 141 # Invalid test cases (recent change adding var changes semantics)
128 S8.3_A1_T1: FAIL 142 S8.3_A1_T1: FAIL
129 S15.3_A3_T1: FAIL 143 S15.3_A3_T1: FAIL
130 S15.3_A3_T3: FAIL 144 S15.3_A3_T3: FAIL
131 145
132 ##################### DELIBERATE INCOMPATIBILITIES ##################### 146 ##################### DELIBERATE INCOMPATIBILITIES #####################
133 147
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
306 # S15.1.1.2_A2_T2 would fail if it weren't bogus in r97. sputnik bug #45. 320 # S15.1.1.2_A2_T2 would fail if it weren't bogus in r97. sputnik bug #45.
307 S15.1.1.3_A2_T1: FAIL_OK # undefined 321 S15.1.1.3_A2_T1: FAIL_OK # undefined
308 S15.1.1.3_A2_T2: FAIL_OK # undefined 322 S15.1.1.3_A2_T2: FAIL_OK # undefined
309 323
310 # Array.prototype.to[Locale]String is generic in ES5. 324 # Array.prototype.to[Locale]String is generic in ES5.
311 S15.4.4.2_A2_T1: FAIL_OK 325 S15.4.4.2_A2_T1: FAIL_OK
312 S15.4.4.3_A2_T1: FAIL_OK 326 S15.4.4.3_A2_T1: FAIL_OK
313 327
314 ######################### UNANALYZED FAILURES ########################## 328 ######################### UNANALYZED FAILURES ##########################
315 329
316 # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
317 # formal parameters, 'name' is own property of 'O' which is also defined in
318 # [[ParameterMap]] of 'O', and 'desc' is data descriptor, test updating
319 # multiple attribute values of 'name' (10.6 [[DefineOwnProperty]] step 3
320 # and 5.b)
321 15.2.3.6-4-292-1: FAIL
322 # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
323 # formal parameters, 'name' is own data property of 'O' which is also
324 # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
325 # updating the [[Value]] attribute value of 'name' which is defined as
326 # unwritable and non-configurable (10.6 [[DefineOwnProperty]] step 4 and
327 # step 5b)
328 15.2.3.6-4-293-2: FAIL
329 # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
330 # formal parameters, 'name' is own data property of 'O' which is also
331 # defined in [[ParameterMap]] of 'O', test TypeError is not thrown when
332 # updating the [[Value]] attribute value of 'name' which is defined as
333 # non-writable and configurable (10.6 [[DefineOwnProperty]] step 3 and step
334 # 5.b)
335 15.2.3.6-4-293-3: FAIL
336 # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
337 # formal parameters, 'name' is own data property of 'O' which is also
338 # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
339 # updating the [[Writable]] attribute value of 'name' which is defined as
340 # non-configurable (10.6 [[DefineOwnProperty]] step 4 and 5b)
341 15.2.3.6-4-294-1: FAIL
342 # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
343 # formal parameters, 'name' is own data property of 'O' which is also
344 # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
345 # updating the [[Enumerable]] attribute value of 'name' which is defined as
346 # non-configurable (10.6 [[DefineOwnProperty]] step 4 and step 5b)
347 15.2.3.6-4-295-1: FAIL
348 # Bug? Object.defineProperty - 'O' is an Arguments object of a function that has
349 # formal parameters, 'name' is own data property of 'O' which is also
350 # defined in [[ParameterMap]] of 'O', test TypeError is thrown when
351 # updating the [[Configurable]] attribute value of 'name' which is defined
352 # as non-configurable (10.6 [[DefineOwnProperty]] step 4 and step 5b)
353 15.2.3.6-4-296-1: FAIL
354 # Bug? ES5 Attributes - indexed property 'P' with attributes [[Writable]]: true,
355 # [[Enumerable]]: true, [[Configurable]]: false is writable using simple
356 # assignment, 'O' is an Arguments object
357 15.2.3.6-4-333-11: FAIL
358 # Bug? ES5 Attributes - Updating indexed data property 'P' whose attributes are 330 # Bug? ES5 Attributes - Updating indexed data property 'P' whose attributes are
359 # [[Writable]]: false, [[Enumerable]]: true, [[Configurable]]: true to an 331 # [[Writable]]: false, [[Enumerable]]: true, [[Configurable]]: true to an
360 # accessor property, 'A' is an Array object (8.12.9 - step 9.b.i) 332 # accessor property, 'A' is an Array object (8.12.9 - step 9.b.i)
361 15.2.3.6-4-360-1: FAIL 333 15.2.3.6-4-360-1: FAIL
362 # Bug? ES5 Attributes - Updating indexed data property 'P' whose attributes are 334 # Bug? ES5 Attributes - Updating indexed data property 'P' whose attributes are
363 # [[Writable]]: false, [[Enumerable]]: true, [[Configurable]]: true to an 335 # [[Writable]]: false, [[Enumerable]]: true, [[Configurable]]: true to an
364 # accessor property, 'O' is an Arguments object (8.12.9 - step 9.b.i) 336 # accessor property, 'O' is an Arguments object (8.12.9 - step 9.b.i)
365 15.2.3.6-4-360-6: FAIL 337 15.2.3.6-4-360-6: FAIL
366 # Bug? ES5 Attributes - Updating indexed data property 'P' whose attributes are 338 # Bug? ES5 Attributes - Updating indexed data property 'P' whose attributes are
367 # [[Writable]]: false, [[Enumerable]]: true, [[Configurable]]: true to an 339 # [[Writable]]: false, [[Enumerable]]: true, [[Configurable]]: true to an
368 # accessor property, 'O' is the global object (8.12.9 - step 9.b.i) 340 # accessor property, 'O' is the global object (8.12.9 - step 9.b.i)
369 15.2.3.6-4-360-7: FAIL 341 15.2.3.6-4-360-7: FAIL
370 # Bug? ES5 Attributes - [[Value]] attribute of data property is the activex host
371 # object
372 15.2.3.6-4-401: FAIL
373 # Bug? ES5 Attributes - Failed to add a property to an object when the object's 342 # Bug? ES5 Attributes - Failed to add a property to an object when the object's
374 # object has a property with same name and [[Writable]] attribute is set to 343 # object has a property with same name and [[Writable]] attribute is set to
375 # false (Number instance) 344 # false (Number instance)
376 15.2.3.6-4-405: FAIL 345 15.2.3.6-4-405: FAIL
377 # Bug? ES5 Attributes - Failed to add a property to an object when the object's 346 # Bug? ES5 Attributes - Failed to add a property to an object when the object's
378 # prototype has a property with the same name and [[Writable]] set to false 347 # prototype has a property with the same name and [[Writable]] set to false
379 # (JSON) 348 # (JSON)
380 15.2.3.6-4-410: FAIL 349 15.2.3.6-4-410: FAIL
381 # Bug? ES5 Attributes - Failed to add properties to an object when the object's 350 # Bug? ES5 Attributes - Failed to add properties to an object when the object's
382 # prototype has properties with the same name and [[Writable]] set to false 351 # prototype has properties with the same name and [[Writable]] set to false
(...skipping 21 matching lines...) Expand all
404 15.2.3.6-4-619: FAIL 373 15.2.3.6-4-619: FAIL
405 # Bug? ES5 Attributes - all attributes in Array.prototype.reduceRight are 374 # Bug? ES5 Attributes - all attributes in Array.prototype.reduceRight are
406 # correct 375 # correct
407 15.2.3.6-4-620: FAIL 376 15.2.3.6-4-620: FAIL
408 # Bug? ES5 Attributes - all attributes in String.prototype.trim are correct 377 # Bug? ES5 Attributes - all attributes in String.prototype.trim are correct
409 15.2.3.6-4-621: FAIL 378 15.2.3.6-4-621: FAIL
410 # Bug? ES5 Attributes - all attributes in Date.prototype.toISOString are correct 379 # Bug? ES5 Attributes - all attributes in Date.prototype.toISOString are correct
411 15.2.3.6-4-623: FAIL 380 15.2.3.6-4-623: FAIL
412 # Bug? ES5 Attributes - all attributes in Date.prototype.toJSON are correct 381 # Bug? ES5 Attributes - all attributes in Date.prototype.toJSON are correct
413 15.2.3.6-4-624: FAIL 382 15.2.3.6-4-624: FAIL
414 # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is own data
415 # property of 'O' which is also defined in [[ParameterMap]] of 'O', and
416 # 'desc' is data descriptor, test updating multiple attribute values of 'P'
417 # (10.6 [[DefineOwnProperty]] step 3)
418 15.2.3.7-6-a-281: FAIL
419 # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is own data
420 # property of 'O' which is also defined in [[ParameterMap]] of 'O', test
421 # TypeError is thrown when updating the [[Value]] attribute value of 'P'
422 # whose writable and configurable attributes are false (10.6
423 # [[DefineOwnProperty]] step 4)
424 15.2.3.7-6-a-282: FAIL
425 # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is own data
426 # property of 'O' which is also defined in [[ParameterMap]] of 'O', test
427 # TypeError is thrown when updating the [[Writable]] attribute value of 'P'
428 # which is defined as non-configurable (10.6 [[DefineOwnProperty]] step 4)
429 15.2.3.7-6-a-283: FAIL
430 # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is own data
431 # property of 'O' which is also defined in [[ParameterMap]] of 'O', test
432 # TypeError is thrown when updating the [[Enumerable]] attribute value of
433 # 'P' which is defined as non-configurable (10.6 [[DefineOwnProperty]] step
434 # 4)
435 15.2.3.7-6-a-284: FAIL
436 # Bug? Object.defineProperties - 'O' is an Arguments object, 'P' is own data
437 # property of 'O' which is also defined in [[ParameterMap]] of 'O', test
438 # TypeError is thrown when updating the [[Configurable]] attribute value of
439 # 'P' which is defined as non-configurable (10.6 [[DefineOwnProperty]] step
440 # 4)
441 15.2.3.7-6-a-285: FAIL
442 # Bug? Array.prototype.indexOf - decreasing length of array does not delete 383 # Bug? Array.prototype.indexOf - decreasing length of array does not delete
443 # non-configurable properties 384 # non-configurable properties
444 15.4.4.14-9-a-19: FAIL 385 15.4.4.14-9-a-19: FAIL
445 # Bug? Array.prototype.lastIndexOf - decreasing length of array does not delete 386 # Bug? Array.prototype.lastIndexOf - decreasing length of array does not delete
446 # non-configurable properties 387 # non-configurable properties
447 15.4.4.15-8-a-19: FAIL 388 15.4.4.15-8-a-19: FAIL
448 # Bug? Array.prototype.every - decreasing length of array does not delete 389 # Bug? Array.prototype.every - decreasing length of array does not delete
449 # non-configurable properties 390 # non-configurable properties
450 15.4.4.16-7-b-16: FAIL 391 15.4.4.16-7-b-16: FAIL
451 # Bug? Array.prototype.some - decreasing length of array does not delete 392 # Bug? Array.prototype.some - decreasing length of array does not delete
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
490 S15.1.3.2_A2.5_T1: SKIP 431 S15.1.3.2_A2.5_T1: SKIP
491 S15.1.3.3_A2.3_T1: SKIP 432 S15.1.3.3_A2.3_T1: SKIP
492 S15.1.3.4_A2.3_T1: SKIP 433 S15.1.3.4_A2.3_T1: SKIP
493 S15.1.3.1_A2.5_T1: SKIP 434 S15.1.3.1_A2.5_T1: SKIP
494 S15.1.3.2_A2.5_T1: SKIP 435 S15.1.3.2_A2.5_T1: SKIP
495 436
496 [ $arch == mips ] 437 [ $arch == mips ]
497 438
498 # Skip all tests on MIPS. 439 # Skip all tests on MIPS.
499 *: SKIP 440 *: SKIP
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698